CONUS= USAboundaries::us_counties(resolution = "low") %>%
filter(!(state_name %in% c( 'Puerto Rico', 'Alaska', 'Hawaii')))
conusbound= USAboundaries::us_boundaries(resolution = "low") %>%
filter(!(state_name %in% c( 'Puerto Rico', 'Alaska', 'Hawaii')))
conusbound <- st_transform(conusbound, 5070)
regions = data.frame(region = state.region, state_name = state.name)
uscounty = left_join(us_counties(), regions) %>%
filter(!(state_name %in% c( 'Puerto Rico', 'Alaska', 'Hawaii'))) %>%
st_transform(st_crs(5070))
state_county = uscounty %>%
group_by(state_name) %>% summarise()
uscentroid = st_centroid(uscounty) %>%
st_union() %>%
st_cast("MULTIPOINT")
plot(state_county$geometry)
CONUS <- st_transform(CONUS,5070)
conus_cent = st_centroid(CONUS) %>%
st_union %>%
st_cast("MULTIPOINT")
#Creating Plot function
plot_tess = function(data, title){
ggplot() +
geom_sf(data = data, fill = "white", col = "navy", size = .2) +
theme_void() +
labs(title = title, caption = paste("This tesselation has:", nrow(data), "tiles" )) +
theme(plot.title = element_text(hjust = .5, color = "navy", face = "bold"))
}
#Creating 4 different surfaces 1.3
veroni = st_voronoi(conus_cent) %>%
st_cast() %>%
st_as_sf() %>%
mutate(id = 1:n())
triang = st_triangulate(conus_cent) %>%
st_cast() %>%
st_as_sf() %>%
mutate(id = 1:n())
sq_grid = st_make_grid(CONUS, n = c(70, 50)) %>%
st_as_sf() %>%
mutate(id = 1:n())
sq_hex = st_make_grid(CONUS, n = c(70, 50), square = FALSE) %>%
st_as_sf() %>%
mutate(id = 1:n())
simp_conus = rmapshaper::ms_simplify(conusbound, keep = .05)
mapview::npts(conusbound)
## [1] 11193
mapview::npts(simp_conus)
## [1] 818
#Original was equal to 11193 point and the simplified was 818. I was able to remove 10375 points.
triang = st_intersection(triang, st_union(simp_conus))
veroni = st_intersection(veroni, st_union(simp_conus))
#Final plots 1.7
plot_tess(triang, "Triangle")
plot_tess(veroni, "Voroni")
plot_tess(sq_grid, " Square Grid")
plot_tess(sq_hex, "Hexagonal Grid")
#Question 2.1
get_df = function(data,title){
areas = st_area(data)
areas = units::set_units(areas, "km2")
areas = units::drop_units(areas)
data.frame(mean = mean(areas), sd = sd(areas), area = areas, text = title, count = sum(areas))
}
#Question 2.2
get_df(triang, "test")
## mean sd area text count
## 1 1251.902 1578.183 1253.364611 test 7755535
## 2 1251.902 1578.183 2896.121597 test 7755535
## 3 1251.902 1578.183 1805.993202 test 7755535
## 4 1251.902 1578.183 1193.984785 test 7755535
## 5 1251.902 1578.183 1183.571885 test 7755535
## 6 1251.902 1578.183 1506.468980 test 7755535
## 7 1251.902 1578.183 1865.868139 test 7755535
## 8 1251.902 1578.183 1636.331994 test 7755535
## 9 1251.902 1578.183 2832.591824 test 7755535
## 10 1251.902 1578.183 5984.913966 test 7755535
## 11 1251.902 1578.183 15658.613956 test 7755535
## 12 1251.902 1578.183 13182.863475 test 7755535
## 13 1251.902 1578.183 3348.113692 test 7755535
## 14 1251.902 1578.183 2605.615476 test 7755535
## 15 1251.902 1578.183 2343.129648 test 7755535
## 16 1251.902 1578.183 6323.877864 test 7755535
## 17 1251.902 1578.183 744.053767 test 7755535
## 18 1251.902 1578.183 648.800666 test 7755535
## 19 1251.902 1578.183 6972.267038 test 7755535
## 20 1251.902 1578.183 1436.332583 test 7755535
## 21 1251.902 1578.183 3552.651232 test 7755535
## 22 1251.902 1578.183 5734.965068 test 7755535
## 23 1251.902 1578.183 3152.606489 test 7755535
## 24 1251.902 1578.183 2426.481417 test 7755535
## 25 1251.902 1578.183 1024.995160 test 7755535
## 26 1251.902 1578.183 3073.064009 test 7755535
## 27 1251.902 1578.183 1161.135553 test 7755535
## 28 1251.902 1578.183 2950.347821 test 7755535
## 29 1251.902 1578.183 1658.067256 test 7755535
## 30 1251.902 1578.183 1075.570384 test 7755535
## 31 1251.902 1578.183 3142.131582 test 7755535
## 32 1251.902 1578.183 247.373257 test 7755535
## 33 1251.902 1578.183 1090.424101 test 7755535
## 34 1251.902 1578.183 98.150193 test 7755535
## 35 1251.902 1578.183 1923.236383 test 7755535
## 36 1251.902 1578.183 1268.295269 test 7755535
## 37 1251.902 1578.183 1239.618869 test 7755535
## 38 1251.902 1578.183 892.633970 test 7755535
## 39 1251.902 1578.183 8877.888292 test 7755535
## 40 1251.902 1578.183 5519.273592 test 7755535
## 41 1251.902 1578.183 12343.854446 test 7755535
## 42 1251.902 1578.183 1837.475953 test 7755535
## 43 1251.902 1578.183 5016.530529 test 7755535
## 44 1251.902 1578.183 6336.223205 test 7755535
## 45 1251.902 1578.183 2040.011862 test 7755535
## 46 1251.902 1578.183 2013.797223 test 7755535
## 47 1251.902 1578.183 4639.775148 test 7755535
## 48 1251.902 1578.183 6144.035940 test 7755535
## 49 1251.902 1578.183 1436.650171 test 7755535
## 50 1251.902 1578.183 673.809384 test 7755535
## 51 1251.902 1578.183 2165.694448 test 7755535
## 52 1251.902 1578.183 1502.338686 test 7755535
## 53 1251.902 1578.183 837.084641 test 7755535
## 54 1251.902 1578.183 1102.778227 test 7755535
## 55 1251.902 1578.183 588.606397 test 7755535
## 56 1251.902 1578.183 92.696521 test 7755535
## 57 1251.902 1578.183 996.784993 test 7755535
## 58 1251.902 1578.183 1338.791333 test 7755535
## 59 1251.902 1578.183 1289.387456 test 7755535
## 60 1251.902 1578.183 1225.698646 test 7755535
## 61 1251.902 1578.183 338.206210 test 7755535
## 62 1251.902 1578.183 1966.887620 test 7755535
## 63 1251.902 1578.183 2107.343740 test 7755535
## 64 1251.902 1578.183 2397.673642 test 7755535
## 65 1251.902 1578.183 5695.135295 test 7755535
## 66 1251.902 1578.183 4374.807954 test 7755535
## 67 1251.902 1578.183 3725.442058 test 7755535
## 68 1251.902 1578.183 1170.835609 test 7755535
## 69 1251.902 1578.183 1859.256711 test 7755535
## 70 1251.902 1578.183 2004.252740 test 7755535
## 71 1251.902 1578.183 3501.813042 test 7755535
## 72 1251.902 1578.183 2514.019595 test 7755535
## 73 1251.902 1578.183 5000.538678 test 7755535
## 74 1251.902 1578.183 2973.404319 test 7755535
## 75 1251.902 1578.183 807.658650 test 7755535
## 76 1251.902 1578.183 1464.544277 test 7755535
## 77 1251.902 1578.183 799.184219 test 7755535
## 78 1251.902 1578.183 749.817960 test 7755535
## 79 1251.902 1578.183 2314.099449 test 7755535
## 80 1251.902 1578.183 1369.213464 test 7755535
## 81 1251.902 1578.183 1342.476801 test 7755535
## 82 1251.902 1578.183 1367.441474 test 7755535
## 83 1251.902 1578.183 2028.071397 test 7755535
## 84 1251.902 1578.183 1758.032877 test 7755535
## 85 1251.902 1578.183 1427.237967 test 7755535
## 86 1251.902 1578.183 1955.230563 test 7755535
## 87 1251.902 1578.183 5463.476886 test 7755535
## 88 1251.902 1578.183 3088.475345 test 7755535
## 89 1251.902 1578.183 4074.917001 test 7755535
## 90 1251.902 1578.183 2272.072472 test 7755535
## 91 1251.902 1578.183 1028.900967 test 7755535
## 92 1251.902 1578.183 1423.851034 test 7755535
## 93 1251.902 1578.183 2155.929381 test 7755535
## 94 1251.902 1578.183 3060.959541 test 7755535
## 95 1251.902 1578.183 7083.749739 test 7755535
## 96 1251.902 1578.183 5476.642992 test 7755535
## 97 1251.902 1578.183 701.303888 test 7755535
## 98 1251.902 1578.183 1958.379250 test 7755535
## 99 1251.902 1578.183 1862.254761 test 7755535
## 100 1251.902 1578.183 238.039023 test 7755535
## 101 1251.902 1578.183 1277.169260 test 7755535
## 102 1251.902 1578.183 815.955532 test 7755535
## 103 1251.902 1578.183 857.731995 test 7755535
## 104 1251.902 1578.183 2966.572068 test 7755535
## 105 1251.902 1578.183 3756.726997 test 7755535
## 106 1251.902 1578.183 5639.765711 test 7755535
## 107 1251.902 1578.183 2282.586148 test 7755535
## 108 1251.902 1578.183 928.153033 test 7755535
## 109 1251.902 1578.183 1252.271070 test 7755535
## 110 1251.902 1578.183 1088.133313 test 7755535
## 111 1251.902 1578.183 2441.391331 test 7755535
## 112 1251.902 1578.183 1108.653787 test 7755535
## 113 1251.902 1578.183 1297.291040 test 7755535
## 114 1251.902 1578.183 1205.513644 test 7755535
## 115 1251.902 1578.183 1351.706801 test 7755535
## 116 1251.902 1578.183 1017.037401 test 7755535
## 117 1251.902 1578.183 1159.047988 test 7755535
## 118 1251.902 1578.183 1198.345960 test 7755535
## 119 1251.902 1578.183 2889.441070 test 7755535
## 120 1251.902 1578.183 4182.738457 test 7755535
## 121 1251.902 1578.183 280.916732 test 7755535
## 122 1251.902 1578.183 1655.522246 test 7755535
## 123 1251.902 1578.183 1773.776189 test 7755535
## 124 1251.902 1578.183 614.807466 test 7755535
## 125 1251.902 1578.183 620.122249 test 7755535
## 126 1251.902 1578.183 657.201162 test 7755535
## 127 1251.902 1578.183 710.505776 test 7755535
## 128 1251.902 1578.183 1609.543794 test 7755535
## 129 1251.902 1578.183 2529.758182 test 7755535
## 130 1251.902 1578.183 2544.628514 test 7755535
## 131 1251.902 1578.183 2784.604218 test 7755535
## 132 1251.902 1578.183 3210.002921 test 7755535
## 133 1251.902 1578.183 5421.139102 test 7755535
## 134 1251.902 1578.183 2171.860476 test 7755535
## 135 1251.902 1578.183 2744.012776 test 7755535
## 136 1251.902 1578.183 1217.737781 test 7755535
## 137 1251.902 1578.183 1480.477269 test 7755535
## 138 1251.902 1578.183 23.289963 test 7755535
## 139 1251.902 1578.183 25.549219 test 7755535
## 140 1251.902 1578.183 422.445353 test 7755535
## 141 1251.902 1578.183 350.008922 test 7755535
## 142 1251.902 1578.183 668.954057 test 7755535
## 143 1251.902 1578.183 2875.131767 test 7755535
## 144 1251.902 1578.183 1851.818502 test 7755535
## 145 1251.902 1578.183 2560.503541 test 7755535
## 146 1251.902 1578.183 3244.854077 test 7755535
## 147 1251.902 1578.183 1927.009809 test 7755535
## 148 1251.902 1578.183 1755.245534 test 7755535
## 149 1251.902 1578.183 1441.659870 test 7755535
## 150 1251.902 1578.183 1349.253145 test 7755535
## 151 1251.902 1578.183 916.011197 test 7755535
## 152 1251.902 1578.183 3384.638685 test 7755535
## 153 1251.902 1578.183 2666.872942 test 7755535
## 154 1251.902 1578.183 1102.686761 test 7755535
## 155 1251.902 1578.183 1383.314252 test 7755535
## 156 1251.902 1578.183 1096.404363 test 7755535
## 157 1251.902 1578.183 874.434218 test 7755535
## 158 1251.902 1578.183 1442.026982 test 7755535
## 159 1251.902 1578.183 895.196762 test 7755535
## 160 1251.902 1578.183 1342.498666 test 7755535
## 161 1251.902 1578.183 966.958480 test 7755535
## 162 1251.902 1578.183 3426.616826 test 7755535
## 163 1251.902 1578.183 1393.060148 test 7755535
## 164 1251.902 1578.183 2523.948995 test 7755535
## 165 1251.902 1578.183 586.231045 test 7755535
## 166 1251.902 1578.183 1416.238778 test 7755535
## 167 1251.902 1578.183 1844.339984 test 7755535
## 168 1251.902 1578.183 389.758974 test 7755535
## 169 1251.902 1578.183 1818.820410 test 7755535
## 170 1251.902 1578.183 1243.684575 test 7755535
## 171 1251.902 1578.183 1507.973568 test 7755535
## 172 1251.902 1578.183 990.610177 test 7755535
## 173 1251.902 1578.183 1241.454864 test 7755535
## 174 1251.902 1578.183 768.382407 test 7755535
## 175 1251.902 1578.183 699.057837 test 7755535
## 176 1251.902 1578.183 753.731855 test 7755535
## 177 1251.902 1578.183 2147.244514 test 7755535
## 178 1251.902 1578.183 482.930255 test 7755535
## 179 1251.902 1578.183 1498.573006 test 7755535
## 180 1251.902 1578.183 1919.842329 test 7755535
## 181 1251.902 1578.183 1439.609221 test 7755535
## 182 1251.902 1578.183 1715.579708 test 7755535
## 183 1251.902 1578.183 1564.115849 test 7755535
## 184 1251.902 1578.183 1692.644722 test 7755535
## 185 1251.902 1578.183 2948.440084 test 7755535
## 186 1251.902 1578.183 2013.011002 test 7755535
## 187 1251.902 1578.183 3147.474506 test 7755535
## 188 1251.902 1578.183 3056.294417 test 7755535
## 189 1251.902 1578.183 3483.734215 test 7755535
## 190 1251.902 1578.183 3896.693822 test 7755535
## 191 1251.902 1578.183 5099.910601 test 7755535
## 192 1251.902 1578.183 4496.387145 test 7755535
## 193 1251.902 1578.183 4912.448252 test 7755535
## 194 1251.902 1578.183 10601.883313 test 7755535
## 195 1251.902 1578.183 1677.324644 test 7755535
## 196 1251.902 1578.183 6336.784760 test 7755535
## 197 1251.902 1578.183 10504.290292 test 7755535
## 198 1251.902 1578.183 5310.400436 test 7755535
## 199 1251.902 1578.183 2848.498024 test 7755535
## 200 1251.902 1578.183 11256.189263 test 7755535
## 201 1251.902 1578.183 7226.818482 test 7755535
## 202 1251.902 1578.183 7141.822494 test 7755535
## 203 1251.902 1578.183 7278.673731 test 7755535
## 204 1251.902 1578.183 11328.959929 test 7755535
## 205 1251.902 1578.183 10009.432523 test 7755535
## 206 1251.902 1578.183 7612.526202 test 7755535
## 207 1251.902 1578.183 2323.551956 test 7755535
## 208 1251.902 1578.183 4214.197693 test 7755535
## 209 1251.902 1578.183 12197.083179 test 7755535
## 210 1251.902 1578.183 18316.085201 test 7755535
## 211 1251.902 1578.183 6186.182815 test 7755535
## 212 1251.902 1578.183 4495.237052 test 7755535
## 213 1251.902 1578.183 5900.733664 test 7755535
## 214 1251.902 1578.183 5306.528867 test 7755535
## 215 1251.902 1578.183 2850.456386 test 7755535
## 216 1251.902 1578.183 4691.265150 test 7755535
## 217 1251.902 1578.183 3844.068589 test 7755535
## 218 1251.902 1578.183 2891.236078 test 7755535
## 219 1251.902 1578.183 1712.764318 test 7755535
## 220 1251.902 1578.183 1739.930130 test 7755535
## 221 1251.902 1578.183 1523.641433 test 7755535
## 222 1251.902 1578.183 876.564096 test 7755535
## 223 1251.902 1578.183 685.869940 test 7755535
## 224 1251.902 1578.183 1116.437134 test 7755535
## 225 1251.902 1578.183 1549.657093 test 7755535
## 226 1251.902 1578.183 1160.493508 test 7755535
## 227 1251.902 1578.183 836.387904 test 7755535
## 228 1251.902 1578.183 1315.225258 test 7755535
## 229 1251.902 1578.183 1640.079380 test 7755535
## 230 1251.902 1578.183 1557.516071 test 7755535
## 231 1251.902 1578.183 1108.569737 test 7755535
## 232 1251.902 1578.183 1640.224225 test 7755535
## 233 1251.902 1578.183 1935.338688 test 7755535
## 234 1251.902 1578.183 2681.964350 test 7755535
## 235 1251.902 1578.183 4336.001956 test 7755535
## 236 1251.902 1578.183 3117.592491 test 7755535
## 237 1251.902 1578.183 4448.732151 test 7755535
## 238 1251.902 1578.183 6338.125677 test 7755535
## 239 1251.902 1578.183 4141.207044 test 7755535
## 240 1251.902 1578.183 3227.945749 test 7755535
## 241 1251.902 1578.183 3330.119520 test 7755535
## 242 1251.902 1578.183 4679.879603 test 7755535
## 243 1251.902 1578.183 5380.643797 test 7755535
## 244 1251.902 1578.183 8954.652955 test 7755535
## 245 1251.902 1578.183 3998.252469 test 7755535
## 246 1251.902 1578.183 2186.438732 test 7755535
## 247 1251.902 1578.183 1632.031231 test 7755535
## 248 1251.902 1578.183 1506.264858 test 7755535
## 249 1251.902 1578.183 1206.261788 test 7755535
## 250 1251.902 1578.183 686.934194 test 7755535
## 251 1251.902 1578.183 785.193998 test 7755535
## 252 1251.902 1578.183 1409.850137 test 7755535
## 253 1251.902 1578.183 266.529206 test 7755535
## 254 1251.902 1578.183 621.982874 test 7755535
## 255 1251.902 1578.183 1490.642413 test 7755535
## 256 1251.902 1578.183 2073.379687 test 7755535
## 257 1251.902 1578.183 1226.170467 test 7755535
## 258 1251.902 1578.183 1966.213527 test 7755535
## 259 1251.902 1578.183 1384.897438 test 7755535
## 260 1251.902 1578.183 1717.270292 test 7755535
## 261 1251.902 1578.183 1946.885643 test 7755535
## 262 1251.902 1578.183 2626.772463 test 7755535
## 263 1251.902 1578.183 3698.318002 test 7755535
## 264 1251.902 1578.183 2895.924591 test 7755535
## 265 1251.902 1578.183 2813.246024 test 7755535
## 266 1251.902 1578.183 2665.316787 test 7755535
## 267 1251.902 1578.183 4677.751031 test 7755535
## 268 1251.902 1578.183 2402.882700 test 7755535
## 269 1251.902 1578.183 546.345835 test 7755535
## 270 1251.902 1578.183 2109.091579 test 7755535
## 271 1251.902 1578.183 2654.556290 test 7755535
## 272 1251.902 1578.183 1818.145788 test 7755535
## 273 1251.902 1578.183 2265.332686 test 7755535
## 274 1251.902 1578.183 3961.731761 test 7755535
## 275 1251.902 1578.183 4544.813799 test 7755535
## 276 1251.902 1578.183 4567.260128 test 7755535
## 277 1251.902 1578.183 3405.468726 test 7755535
## 278 1251.902 1578.183 3358.555948 test 7755535
## 279 1251.902 1578.183 2388.651906 test 7755535
## 280 1251.902 1578.183 2813.015478 test 7755535
## 281 1251.902 1578.183 2174.738345 test 7755535
## 282 1251.902 1578.183 4684.809737 test 7755535
## 283 1251.902 1578.183 4418.844227 test 7755535
## 284 1251.902 1578.183 3176.514512 test 7755535
## 285 1251.902 1578.183 1950.022557 test 7755535
## 286 1251.902 1578.183 1849.613286 test 7755535
## 287 1251.902 1578.183 4033.201126 test 7755535
## 288 1251.902 1578.183 2904.798499 test 7755535
## 289 1251.902 1578.183 2762.198302 test 7755535
## 290 1251.902 1578.183 2631.251980 test 7755535
## 291 1251.902 1578.183 2042.518592 test 7755535
## 292 1251.902 1578.183 506.279512 test 7755535
## 293 1251.902 1578.183 1729.869471 test 7755535
## 294 1251.902 1578.183 2101.216545 test 7755535
## 295 1251.902 1578.183 2237.056655 test 7755535
## 296 1251.902 1578.183 160.361159 test 7755535
## 297 1251.902 1578.183 406.932770 test 7755535
## 298 1251.902 1578.183 80.860451 test 7755535
## 299 1251.902 1578.183 1238.499933 test 7755535
## 300 1251.902 1578.183 2303.662259 test 7755535
## 301 1251.902 1578.183 1663.668984 test 7755535
## 302 1251.902 1578.183 1243.682788 test 7755535
## 303 1251.902 1578.183 3316.304594 test 7755535
## 304 1251.902 1578.183 1977.009528 test 7755535
## 305 1251.902 1578.183 1630.197069 test 7755535
## 306 1251.902 1578.183 4692.418928 test 7755535
## 307 1251.902 1578.183 3690.164949 test 7755535
## 308 1251.902 1578.183 3633.782053 test 7755535
## 309 1251.902 1578.183 3010.969162 test 7755535
## 310 1251.902 1578.183 4970.750549 test 7755535
## 311 1251.902 1578.183 2449.832297 test 7755535
## 312 1251.902 1578.183 1467.857370 test 7755535
## 313 1251.902 1578.183 2270.719803 test 7755535
## 314 1251.902 1578.183 1102.270908 test 7755535
## 315 1251.902 1578.183 763.445801 test 7755535
## 316 1251.902 1578.183 2442.015370 test 7755535
## 317 1251.902 1578.183 1859.146611 test 7755535
## 318 1251.902 1578.183 922.103629 test 7755535
## 319 1251.902 1578.183 1596.278777 test 7755535
## 320 1251.902 1578.183 1402.363476 test 7755535
## 321 1251.902 1578.183 1859.230751 test 7755535
## 322 1251.902 1578.183 2285.619804 test 7755535
## 323 1251.902 1578.183 1169.688404 test 7755535
## 324 1251.902 1578.183 1106.654160 test 7755535
## 325 1251.902 1578.183 1718.245969 test 7755535
## 326 1251.902 1578.183 752.722076 test 7755535
## 327 1251.902 1578.183 349.808073 test 7755535
## 328 1251.902 1578.183 542.313221 test 7755535
## 329 1251.902 1578.183 756.320119 test 7755535
## 330 1251.902 1578.183 878.591319 test 7755535
## 331 1251.902 1578.183 898.172406 test 7755535
## 332 1251.902 1578.183 683.757393 test 7755535
## 333 1251.902 1578.183 920.889107 test 7755535
## 334 1251.902 1578.183 832.440062 test 7755535
## 335 1251.902 1578.183 391.776664 test 7755535
## 336 1251.902 1578.183 904.910386 test 7755535
## 337 1251.902 1578.183 988.101142 test 7755535
## 338 1251.902 1578.183 1945.409654 test 7755535
## 339 1251.902 1578.183 1603.086565 test 7755535
## 340 1251.902 1578.183 2019.758462 test 7755535
## 341 1251.902 1578.183 3246.208486 test 7755535
## 342 1251.902 1578.183 3059.771819 test 7755535
## 343 1251.902 1578.183 2593.239093 test 7755535
## 344 1251.902 1578.183 1654.134972 test 7755535
## 345 1251.902 1578.183 1586.641257 test 7755535
## 346 1251.902 1578.183 1233.403706 test 7755535
## 347 1251.902 1578.183 941.652131 test 7755535
## 348 1251.902 1578.183 659.121551 test 7755535
## 349 1251.902 1578.183 772.081078 test 7755535
## 350 1251.902 1578.183 781.041186 test 7755535
## 351 1251.902 1578.183 753.745173 test 7755535
## 352 1251.902 1578.183 554.015630 test 7755535
## 353 1251.902 1578.183 685.222334 test 7755535
## 354 1251.902 1578.183 1417.151422 test 7755535
## 355 1251.902 1578.183 2195.722282 test 7755535
## 356 1251.902 1578.183 1232.238859 test 7755535
## 357 1251.902 1578.183 789.784822 test 7755535
## 358 1251.902 1578.183 583.096525 test 7755535
## 359 1251.902 1578.183 1074.363350 test 7755535
## 360 1251.902 1578.183 725.250812 test 7755535
## 361 1251.902 1578.183 128.443540 test 7755535
## 362 1251.902 1578.183 1165.302337 test 7755535
## 363 1251.902 1578.183 214.538186 test 7755535
## 364 1251.902 1578.183 431.177863 test 7755535
## 365 1251.902 1578.183 869.097188 test 7755535
## 366 1251.902 1578.183 735.738149 test 7755535
## 367 1251.902 1578.183 558.110299 test 7755535
## 368 1251.902 1578.183 286.490024 test 7755535
## 369 1251.902 1578.183 221.838929 test 7755535
## 370 1251.902 1578.183 718.223753 test 7755535
## 371 1251.902 1578.183 599.305964 test 7755535
## 372 1251.902 1578.183 509.712695 test 7755535
## 373 1251.902 1578.183 572.933901 test 7755535
## 374 1251.902 1578.183 945.838697 test 7755535
## 375 1251.902 1578.183 932.897421 test 7755535
## 376 1251.902 1578.183 1207.767229 test 7755535
## 377 1251.902 1578.183 297.263964 test 7755535
## 378 1251.902 1578.183 620.433529 test 7755535
## 379 1251.902 1578.183 349.855671 test 7755535
## 380 1251.902 1578.183 820.629809 test 7755535
## 381 1251.902 1578.183 830.378802 test 7755535
## 382 1251.902 1578.183 597.262565 test 7755535
## 383 1251.902 1578.183 464.558785 test 7755535
## 384 1251.902 1578.183 568.160760 test 7755535
## 385 1251.902 1578.183 225.332256 test 7755535
## 386 1251.902 1578.183 1073.113576 test 7755535
## 387 1251.902 1578.183 1334.895541 test 7755535
## 388 1251.902 1578.183 1005.935803 test 7755535
## 389 1251.902 1578.183 645.939886 test 7755535
## 390 1251.902 1578.183 2338.096466 test 7755535
## 391 1251.902 1578.183 1442.454749 test 7755535
## 392 1251.902 1578.183 1898.203102 test 7755535
## 393 1251.902 1578.183 2065.611903 test 7755535
## 394 1251.902 1578.183 1789.305576 test 7755535
## 395 1251.902 1578.183 1593.989682 test 7755535
## 396 1251.902 1578.183 1304.422906 test 7755535
## 397 1251.902 1578.183 628.026231 test 7755535
## 398 1251.902 1578.183 817.591017 test 7755535
## 399 1251.902 1578.183 821.853047 test 7755535
## 400 1251.902 1578.183 664.784160 test 7755535
## 401 1251.902 1578.183 998.803478 test 7755535
## 402 1251.902 1578.183 833.613173 test 7755535
## 403 1251.902 1578.183 479.074279 test 7755535
## 404 1251.902 1578.183 640.039295 test 7755535
## 405 1251.902 1578.183 1637.989052 test 7755535
## 406 1251.902 1578.183 1580.584103 test 7755535
## 407 1251.902 1578.183 1010.909121 test 7755535
## 408 1251.902 1578.183 538.499879 test 7755535
## 409 1251.902 1578.183 858.913217 test 7755535
## 410 1251.902 1578.183 826.002840 test 7755535
## 411 1251.902 1578.183 1036.917871 test 7755535
## 412 1251.902 1578.183 1565.487406 test 7755535
## 413 1251.902 1578.183 1316.365087 test 7755535
## 414 1251.902 1578.183 812.115363 test 7755535
## 415 1251.902 1578.183 896.087913 test 7755535
## 416 1251.902 1578.183 599.461265 test 7755535
## 417 1251.902 1578.183 753.294958 test 7755535
## 418 1251.902 1578.183 744.601015 test 7755535
## 419 1251.902 1578.183 806.873099 test 7755535
## 420 1251.902 1578.183 713.750571 test 7755535
## 421 1251.902 1578.183 984.918936 test 7755535
## 422 1251.902 1578.183 890.499498 test 7755535
## 423 1251.902 1578.183 1207.259106 test 7755535
## 424 1251.902 1578.183 908.005891 test 7755535
## 425 1251.902 1578.183 596.263850 test 7755535
## 426 1251.902 1578.183 549.750401 test 7755535
## 427 1251.902 1578.183 947.020012 test 7755535
## 428 1251.902 1578.183 446.547343 test 7755535
## 429 1251.902 1578.183 371.889265 test 7755535
## 430 1251.902 1578.183 325.116815 test 7755535
## 431 1251.902 1578.183 753.680062 test 7755535
## 432 1251.902 1578.183 697.197463 test 7755535
## 433 1251.902 1578.183 1083.916396 test 7755535
## 434 1251.902 1578.183 573.035721 test 7755535
## 435 1251.902 1578.183 565.593511 test 7755535
## 436 1251.902 1578.183 1038.262663 test 7755535
## 437 1251.902 1578.183 786.852394 test 7755535
## 438 1251.902 1578.183 990.825436 test 7755535
## 439 1251.902 1578.183 1952.821092 test 7755535
## 440 1251.902 1578.183 1059.912880 test 7755535
## 441 1251.902 1578.183 1112.355318 test 7755535
## 442 1251.902 1578.183 1230.639437 test 7755535
## 443 1251.902 1578.183 933.198138 test 7755535
## 444 1251.902 1578.183 1234.661034 test 7755535
## 445 1251.902 1578.183 1337.398947 test 7755535
## 446 1251.902 1578.183 1619.896631 test 7755535
## 447 1251.902 1578.183 1543.649061 test 7755535
## 448 1251.902 1578.183 1317.757116 test 7755535
## 449 1251.902 1578.183 1362.977080 test 7755535
## 450 1251.902 1578.183 1269.054203 test 7755535
## 451 1251.902 1578.183 1261.037720 test 7755535
## 452 1251.902 1578.183 1545.311720 test 7755535
## 453 1251.902 1578.183 892.540570 test 7755535
## 454 1251.902 1578.183 1135.603000 test 7755535
## 455 1251.902 1578.183 1437.934549 test 7755535
## 456 1251.902 1578.183 1209.404637 test 7755535
## 457 1251.902 1578.183 1288.398494 test 7755535
## 458 1251.902 1578.183 1001.179478 test 7755535
## 459 1251.902 1578.183 1034.725804 test 7755535
## 460 1251.902 1578.183 917.867500 test 7755535
## 461 1251.902 1578.183 1182.838424 test 7755535
## 462 1251.902 1578.183 929.652265 test 7755535
## 463 1251.902 1578.183 1988.665743 test 7755535
## 464 1251.902 1578.183 814.170465 test 7755535
## 465 1251.902 1578.183 928.374752 test 7755535
## 466 1251.902 1578.183 1491.536707 test 7755535
## 467 1251.902 1578.183 1554.281585 test 7755535
## 468 1251.902 1578.183 1941.095829 test 7755535
## 469 1251.902 1578.183 2724.723865 test 7755535
## 470 1251.902 1578.183 2181.502306 test 7755535
## 471 1251.902 1578.183 1250.399029 test 7755535
## 472 1251.902 1578.183 1334.513388 test 7755535
## 473 1251.902 1578.183 1892.288172 test 7755535
## 474 1251.902 1578.183 2073.943433 test 7755535
## 475 1251.902 1578.183 3971.687533 test 7755535
## 476 1251.902 1578.183 4060.601632 test 7755535
## 477 1251.902 1578.183 4925.409109 test 7755535
## 478 1251.902 1578.183 7129.168713 test 7755535
## 479 1251.902 1578.183 4399.406093 test 7755535
## 480 1251.902 1578.183 2945.119360 test 7755535
## 481 1251.902 1578.183 3301.211810 test 7755535
## 482 1251.902 1578.183 4720.466578 test 7755535
## 483 1251.902 1578.183 8395.746277 test 7755535
## 484 1251.902 1578.183 4586.521898 test 7755535
## 485 1251.902 1578.183 4144.188275 test 7755535
## 486 1251.902 1578.183 3301.602219 test 7755535
## 487 1251.902 1578.183 4144.156563 test 7755535
## 488 1251.902 1578.183 3690.996113 test 7755535
## 489 1251.902 1578.183 4486.518153 test 7755535
## 490 1251.902 1578.183 5134.463704 test 7755535
## 491 1251.902 1578.183 5764.649088 test 7755535
## 492 1251.902 1578.183 4263.265387 test 7755535
## 493 1251.902 1578.183 6686.523577 test 7755535
## 494 1251.902 1578.183 6546.699752 test 7755535
## 495 1251.902 1578.183 5810.124839 test 7755535
## 496 1251.902 1578.183 10938.038356 test 7755535
## 497 1251.902 1578.183 9454.440743 test 7755535
## 498 1251.902 1578.183 13364.734116 test 7755535
## 499 1251.902 1578.183 23179.658797 test 7755535
## 500 1251.902 1578.183 11579.722266 test 7755535
## 501 1251.902 1578.183 18130.978837 test 7755535
## 502 1251.902 1578.183 19512.469525 test 7755535
## 503 1251.902 1578.183 7489.299509 test 7755535
## 504 1251.902 1578.183 9181.064976 test 7755535
## 505 1251.902 1578.183 10464.773164 test 7755535
## 506 1251.902 1578.183 7010.948546 test 7755535
## 507 1251.902 1578.183 3338.406011 test 7755535
## 508 1251.902 1578.183 2395.265795 test 7755535
## 509 1251.902 1578.183 2158.800865 test 7755535
## 510 1251.902 1578.183 1728.486715 test 7755535
## 511 1251.902 1578.183 2007.311029 test 7755535
## 512 1251.902 1578.183 3404.372648 test 7755535
## 513 1251.902 1578.183 1681.571701 test 7755535
## 514 1251.902 1578.183 1900.001674 test 7755535
## 515 1251.902 1578.183 795.989798 test 7755535
## 516 1251.902 1578.183 1112.808962 test 7755535
## 517 1251.902 1578.183 1438.368762 test 7755535
## 518 1251.902 1578.183 2769.760526 test 7755535
## 519 1251.902 1578.183 1180.137231 test 7755535
## 520 1251.902 1578.183 1053.113070 test 7755535
## 521 1251.902 1578.183 1703.230076 test 7755535
## 522 1251.902 1578.183 932.453069 test 7755535
## 523 1251.902 1578.183 1191.885280 test 7755535
## 524 1251.902 1578.183 2664.052936 test 7755535
## 525 1251.902 1578.183 901.207553 test 7755535
## 526 1251.902 1578.183 3339.861912 test 7755535
## 527 1251.902 1578.183 2927.623646 test 7755535
## 528 1251.902 1578.183 4650.071423 test 7755535
## 529 1251.902 1578.183 6163.860382 test 7755535
## 530 1251.902 1578.183 6987.658292 test 7755535
## 531 1251.902 1578.183 9167.946084 test 7755535
## 532 1251.902 1578.183 4352.762912 test 7755535
## 533 1251.902 1578.183 6766.742017 test 7755535
## 534 1251.902 1578.183 6876.213103 test 7755535
## 535 1251.902 1578.183 5241.236927 test 7755535
## 536 1251.902 1578.183 2713.133910 test 7755535
## 537 1251.902 1578.183 4252.101181 test 7755535
## 538 1251.902 1578.183 3981.806912 test 7755535
## 539 1251.902 1578.183 707.378254 test 7755535
## 540 1251.902 1578.183 817.839183 test 7755535
## 541 1251.902 1578.183 1910.345451 test 7755535
## 542 1251.902 1578.183 1344.794196 test 7755535
## 543 1251.902 1578.183 665.986086 test 7755535
## 544 1251.902 1578.183 1012.684952 test 7755535
## 545 1251.902 1578.183 949.594485 test 7755535
## 546 1251.902 1578.183 778.516498 test 7755535
## 547 1251.902 1578.183 968.927756 test 7755535
## 548 1251.902 1578.183 1366.732054 test 7755535
## 549 1251.902 1578.183 1471.654863 test 7755535
## 550 1251.902 1578.183 3691.519966 test 7755535
## 551 1251.902 1578.183 3369.882739 test 7755535
## 552 1251.902 1578.183 4107.922153 test 7755535
## 553 1251.902 1578.183 2669.419673 test 7755535
## 554 1251.902 1578.183 3432.139120 test 7755535
## 555 1251.902 1578.183 5113.867367 test 7755535
## 556 1251.902 1578.183 2436.374959 test 7755535
## 557 1251.902 1578.183 2018.317583 test 7755535
## 558 1251.902 1578.183 2355.542443 test 7755535
## 559 1251.902 1578.183 2641.230260 test 7755535
## 560 1251.902 1578.183 3042.070891 test 7755535
## 561 1251.902 1578.183 3367.919594 test 7755535
## 562 1251.902 1578.183 2466.042513 test 7755535
## 563 1251.902 1578.183 1346.058750 test 7755535
## 564 1251.902 1578.183 1492.445331 test 7755535
## 565 1251.902 1578.183 1267.686283 test 7755535
## 566 1251.902 1578.183 2896.532977 test 7755535
## 567 1251.902 1578.183 2352.128675 test 7755535
## 568 1251.902 1578.183 1852.264343 test 7755535
## 569 1251.902 1578.183 2268.507316 test 7755535
## 570 1251.902 1578.183 2829.149011 test 7755535
## 571 1251.902 1578.183 4967.313256 test 7755535
## 572 1251.902 1578.183 2949.714426 test 7755535
## 573 1251.902 1578.183 1906.342499 test 7755535
## 574 1251.902 1578.183 1375.558823 test 7755535
## 575 1251.902 1578.183 557.911385 test 7755535
## 576 1251.902 1578.183 2714.343579 test 7755535
## 577 1251.902 1578.183 3789.685175 test 7755535
## 578 1251.902 1578.183 6557.546863 test 7755535
## 579 1251.902 1578.183 5229.111077 test 7755535
## 580 1251.902 1578.183 1389.599381 test 7755535
## 581 1251.902 1578.183 5477.290661 test 7755535
## 582 1251.902 1578.183 4961.482623 test 7755535
## 583 1251.902 1578.183 4703.952527 test 7755535
## 584 1251.902 1578.183 2890.898430 test 7755535
## 585 1251.902 1578.183 2493.305868 test 7755535
## 586 1251.902 1578.183 1839.293159 test 7755535
## 587 1251.902 1578.183 3955.463336 test 7755535
## 588 1251.902 1578.183 1409.636941 test 7755535
## 589 1251.902 1578.183 1433.077854 test 7755535
## 590 1251.902 1578.183 2320.898130 test 7755535
## 591 1251.902 1578.183 3181.583069 test 7755535
## 592 1251.902 1578.183 2805.741471 test 7755535
## 593 1251.902 1578.183 2572.178044 test 7755535
## 594 1251.902 1578.183 2100.411757 test 7755535
## 595 1251.902 1578.183 1706.572622 test 7755535
## 596 1251.902 1578.183 2313.149723 test 7755535
## 597 1251.902 1578.183 2632.044768 test 7755535
## 598 1251.902 1578.183 1812.952231 test 7755535
## 599 1251.902 1578.183 1419.334603 test 7755535
## 600 1251.902 1578.183 1319.955909 test 7755535
## 601 1251.902 1578.183 501.442177 test 7755535
## 602 1251.902 1578.183 1518.390385 test 7755535
## 603 1251.902 1578.183 1963.484720 test 7755535
## 604 1251.902 1578.183 1490.420304 test 7755535
## 605 1251.902 1578.183 1650.163242 test 7755535
## 606 1251.902 1578.183 1367.857343 test 7755535
## 607 1251.902 1578.183 2495.482484 test 7755535
## 608 1251.902 1578.183 2580.721296 test 7755535
## 609 1251.902 1578.183 844.175683 test 7755535
## 610 1251.902 1578.183 222.920465 test 7755535
## 611 1251.902 1578.183 654.613074 test 7755535
## 612 1251.902 1578.183 1289.717612 test 7755535
## 613 1251.902 1578.183 1343.674155 test 7755535
## 614 1251.902 1578.183 1344.413646 test 7755535
## 615 1251.902 1578.183 1628.157961 test 7755535
## 616 1251.902 1578.183 1337.062810 test 7755535
## 617 1251.902 1578.183 1865.803552 test 7755535
## 618 1251.902 1578.183 3174.954457 test 7755535
## 619 1251.902 1578.183 2805.270674 test 7755535
## 620 1251.902 1578.183 4842.937416 test 7755535
## 621 1251.902 1578.183 3406.888150 test 7755535
## 622 1251.902 1578.183 4941.637757 test 7755535
## 623 1251.902 1578.183 2420.148321 test 7755535
## 624 1251.902 1578.183 1689.780019 test 7755535
## 625 1251.902 1578.183 1799.691668 test 7755535
## 626 1251.902 1578.183 1395.030237 test 7755535
## 627 1251.902 1578.183 1884.559886 test 7755535
## 628 1251.902 1578.183 1116.315447 test 7755535
## 629 1251.902 1578.183 407.017143 test 7755535
## 630 1251.902 1578.183 942.958577 test 7755535
## 631 1251.902 1578.183 1923.288529 test 7755535
## 632 1251.902 1578.183 1266.959528 test 7755535
## 633 1251.902 1578.183 1127.938774 test 7755535
## 634 1251.902 1578.183 2147.169878 test 7755535
## 635 1251.902 1578.183 684.970927 test 7755535
## 636 1251.902 1578.183 911.002695 test 7755535
## 637 1251.902 1578.183 1329.754286 test 7755535
## 638 1251.902 1578.183 1164.771531 test 7755535
## 639 1251.902 1578.183 1643.369673 test 7755535
## 640 1251.902 1578.183 993.422580 test 7755535
## 641 1251.902 1578.183 183.832577 test 7755535
## 642 1251.902 1578.183 1364.106857 test 7755535
## 643 1251.902 1578.183 223.030976 test 7755535
## 644 1251.902 1578.183 622.042408 test 7755535
## 645 1251.902 1578.183 934.175303 test 7755535
## 646 1251.902 1578.183 856.660730 test 7755535
## 647 1251.902 1578.183 767.880042 test 7755535
## 648 1251.902 1578.183 715.055721 test 7755535
## 649 1251.902 1578.183 715.934510 test 7755535
## 650 1251.902 1578.183 714.757559 test 7755535
## 651 1251.902 1578.183 764.200429 test 7755535
## 652 1251.902 1578.183 823.792936 test 7755535
## 653 1251.902 1578.183 715.348519 test 7755535
## 654 1251.902 1578.183 1497.643643 test 7755535
## 655 1251.902 1578.183 1244.033785 test 7755535
## 656 1251.902 1578.183 1286.360770 test 7755535
## 657 1251.902 1578.183 715.025178 test 7755535
## 658 1251.902 1578.183 1444.451469 test 7755535
## 659 1251.902 1578.183 1109.964590 test 7755535
## 660 1251.902 1578.183 1086.118845 test 7755535
## 661 1251.902 1578.183 590.471618 test 7755535
## 662 1251.902 1578.183 588.183548 test 7755535
## 663 1251.902 1578.183 892.978801 test 7755535
## 664 1251.902 1578.183 850.448407 test 7755535
## 665 1251.902 1578.183 899.864797 test 7755535
## 666 1251.902 1578.183 756.561385 test 7755535
## 667 1251.902 1578.183 577.091046 test 7755535
## 668 1251.902 1578.183 1546.739073 test 7755535
## 669 1251.902 1578.183 671.274785 test 7755535
## 670 1251.902 1578.183 1396.229070 test 7755535
## 671 1251.902 1578.183 1719.013746 test 7755535
## 672 1251.902 1578.183 1166.240207 test 7755535
## 673 1251.902 1578.183 1293.761685 test 7755535
## 674 1251.902 1578.183 1228.606276 test 7755535
## 675 1251.902 1578.183 1569.957352 test 7755535
## 676 1251.902 1578.183 1129.657040 test 7755535
## 677 1251.902 1578.183 868.722419 test 7755535
## 678 1251.902 1578.183 938.136165 test 7755535
## 679 1251.902 1578.183 1651.451648 test 7755535
## 680 1251.902 1578.183 922.958267 test 7755535
## 681 1251.902 1578.183 1475.855931 test 7755535
## 682 1251.902 1578.183 883.915529 test 7755535
## 683 1251.902 1578.183 815.331978 test 7755535
## 684 1251.902 1578.183 1220.958517 test 7755535
## 685 1251.902 1578.183 2138.938208 test 7755535
## 686 1251.902 1578.183 2211.097910 test 7755535
## 687 1251.902 1578.183 1895.653038 test 7755535
## 688 1251.902 1578.183 2387.103857 test 7755535
## 689 1251.902 1578.183 1053.348518 test 7755535
## 690 1251.902 1578.183 677.285275 test 7755535
## 691 1251.902 1578.183 655.443349 test 7755535
## 692 1251.902 1578.183 2012.190836 test 7755535
## 693 1251.902 1578.183 1003.983079 test 7755535
## 694 1251.902 1578.183 790.659969 test 7755535
## 695 1251.902 1578.183 580.190563 test 7755535
## 696 1251.902 1578.183 535.857172 test 7755535
## 697 1251.902 1578.183 433.932885 test 7755535
## 698 1251.902 1578.183 576.715394 test 7755535
## 699 1251.902 1578.183 762.198830 test 7755535
## 700 1251.902 1578.183 242.038088 test 7755535
## 701 1251.902 1578.183 127.880696 test 7755535
## 702 1251.902 1578.183 199.408680 test 7755535
## 703 1251.902 1578.183 323.078480 test 7755535
## 704 1251.902 1578.183 485.771386 test 7755535
## 705 1251.902 1578.183 735.116966 test 7755535
## 706 1251.902 1578.183 563.367410 test 7755535
## 707 1251.902 1578.183 771.546153 test 7755535
## 708 1251.902 1578.183 677.669116 test 7755535
## 709 1251.902 1578.183 681.609534 test 7755535
## 710 1251.902 1578.183 928.636173 test 7755535
## 711 1251.902 1578.183 1010.465835 test 7755535
## 712 1251.902 1578.183 987.242762 test 7755535
## 713 1251.902 1578.183 449.243950 test 7755535
## 714 1251.902 1578.183 750.775503 test 7755535
## 715 1251.902 1578.183 453.110403 test 7755535
## 716 1251.902 1578.183 156.765463 test 7755535
## 717 1251.902 1578.183 60.958921 test 7755535
## 718 1251.902 1578.183 330.836167 test 7755535
## 719 1251.902 1578.183 688.383883 test 7755535
## 720 1251.902 1578.183 861.186317 test 7755535
## 721 1251.902 1578.183 746.355459 test 7755535
## 722 1251.902 1578.183 740.169047 test 7755535
## 723 1251.902 1578.183 565.972927 test 7755535
## 724 1251.902 1578.183 402.080997 test 7755535
## 725 1251.902 1578.183 753.099404 test 7755535
## 726 1251.902 1578.183 360.463695 test 7755535
## 727 1251.902 1578.183 513.310571 test 7755535
## 728 1251.902 1578.183 630.562019 test 7755535
## 729 1251.902 1578.183 1075.552657 test 7755535
## 730 1251.902 1578.183 422.479088 test 7755535
## 731 1251.902 1578.183 451.550236 test 7755535
## 732 1251.902 1578.183 717.498374 test 7755535
## 733 1251.902 1578.183 851.781329 test 7755535
## 734 1251.902 1578.183 887.802807 test 7755535
## 735 1251.902 1578.183 546.812072 test 7755535
## 736 1251.902 1578.183 399.818223 test 7755535
## 737 1251.902 1578.183 76.522647 test 7755535
## 738 1251.902 1578.183 302.106513 test 7755535
## 739 1251.902 1578.183 417.744307 test 7755535
## 740 1251.902 1578.183 26.694243 test 7755535
## 741 1251.902 1578.183 42.888618 test 7755535
## 742 1251.902 1578.183 148.115408 test 7755535
## 743 1251.902 1578.183 359.223564 test 7755535
## 744 1251.902 1578.183 53.090600 test 7755535
## 745 1251.902 1578.183 606.101331 test 7755535
## 746 1251.902 1578.183 341.989602 test 7755535
## 747 1251.902 1578.183 658.384374 test 7755535
## 748 1251.902 1578.183 911.832988 test 7755535
## 749 1251.902 1578.183 1316.783482 test 7755535
## 750 1251.902 1578.183 1102.161429 test 7755535
## 751 1251.902 1578.183 841.080669 test 7755535
## 752 1251.902 1578.183 561.022400 test 7755535
## 753 1251.902 1578.183 1479.377117 test 7755535
## 754 1251.902 1578.183 1736.569534 test 7755535
## 755 1251.902 1578.183 1156.675627 test 7755535
## 756 1251.902 1578.183 556.408002 test 7755535
## 757 1251.902 1578.183 773.693697 test 7755535
## 758 1251.902 1578.183 1774.278306 test 7755535
## 759 1251.902 1578.183 1566.364889 test 7755535
## 760 1251.902 1578.183 1590.589243 test 7755535
## 761 1251.902 1578.183 990.941141 test 7755535
## 762 1251.902 1578.183 1120.777673 test 7755535
## 763 1251.902 1578.183 1123.445135 test 7755535
## 764 1251.902 1578.183 786.935375 test 7755535
## 765 1251.902 1578.183 852.479931 test 7755535
## 766 1251.902 1578.183 1269.495067 test 7755535
## 767 1251.902 1578.183 1535.393391 test 7755535
## 768 1251.902 1578.183 1301.437675 test 7755535
## 769 1251.902 1578.183 2135.462058 test 7755535
## 770 1251.902 1578.183 481.619978 test 7755535
## 771 1251.902 1578.183 593.381321 test 7755535
## 772 1251.902 1578.183 1112.798723 test 7755535
## 773 1251.902 1578.183 1578.149679 test 7755535
## 774 1251.902 1578.183 1539.773764 test 7755535
## 775 1251.902 1578.183 951.667166 test 7755535
## 776 1251.902 1578.183 827.343977 test 7755535
## 777 1251.902 1578.183 743.597631 test 7755535
## 778 1251.902 1578.183 845.848583 test 7755535
## 779 1251.902 1578.183 1168.831842 test 7755535
## 780 1251.902 1578.183 1248.350996 test 7755535
## 781 1251.902 1578.183 1011.094018 test 7755535
## 782 1251.902 1578.183 980.378378 test 7755535
## 783 1251.902 1578.183 802.089615 test 7755535
## 784 1251.902 1578.183 1207.674639 test 7755535
## 785 1251.902 1578.183 943.426835 test 7755535
## 786 1251.902 1578.183 820.524070 test 7755535
## 787 1251.902 1578.183 930.077720 test 7755535
## 788 1251.902 1578.183 697.902567 test 7755535
## 789 1251.902 1578.183 951.465153 test 7755535
## 790 1251.902 1578.183 992.879954 test 7755535
## 791 1251.902 1578.183 1994.348763 test 7755535
## 792 1251.902 1578.183 1044.948081 test 7755535
## 793 1251.902 1578.183 730.020404 test 7755535
## 794 1251.902 1578.183 1760.660256 test 7755535
## 795 1251.902 1578.183 3403.055679 test 7755535
## 796 1251.902 1578.183 1615.034069 test 7755535
## 797 1251.902 1578.183 1425.108418 test 7755535
## 798 1251.902 1578.183 815.954000 test 7755535
## 799 1251.902 1578.183 655.968541 test 7755535
## 800 1251.902 1578.183 901.770344 test 7755535
## 801 1251.902 1578.183 543.895969 test 7755535
## 802 1251.902 1578.183 1010.156651 test 7755535
## 803 1251.902 1578.183 695.121756 test 7755535
## 804 1251.902 1578.183 732.851887 test 7755535
## 805 1251.902 1578.183 882.446250 test 7755535
## 806 1251.902 1578.183 846.050178 test 7755535
## 807 1251.902 1578.183 986.222863 test 7755535
## 808 1251.902 1578.183 606.664650 test 7755535
## 809 1251.902 1578.183 1286.455439 test 7755535
## 810 1251.902 1578.183 793.194296 test 7755535
## 811 1251.902 1578.183 632.619420 test 7755535
## 812 1251.902 1578.183 557.660791 test 7755535
## 813 1251.902 1578.183 721.632898 test 7755535
## 814 1251.902 1578.183 215.404845 test 7755535
## 815 1251.902 1578.183 259.460538 test 7755535
## 816 1251.902 1578.183 921.465670 test 7755535
## 817 1251.902 1578.183 1230.498725 test 7755535
## 818 1251.902 1578.183 982.891782 test 7755535
## 819 1251.902 1578.183 696.948182 test 7755535
## 820 1251.902 1578.183 747.847418 test 7755535
## 821 1251.902 1578.183 930.783061 test 7755535
## 822 1251.902 1578.183 976.792297 test 7755535
## 823 1251.902 1578.183 818.982318 test 7755535
## 824 1251.902 1578.183 1051.812760 test 7755535
## 825 1251.902 1578.183 1215.144595 test 7755535
## 826 1251.902 1578.183 902.710230 test 7755535
## 827 1251.902 1578.183 1832.292641 test 7755535
## 828 1251.902 1578.183 962.567550 test 7755535
## 829 1251.902 1578.183 1504.350886 test 7755535
## 830 1251.902 1578.183 813.821533 test 7755535
## 831 1251.902 1578.183 1049.253366 test 7755535
## 832 1251.902 1578.183 1464.095102 test 7755535
## 833 1251.902 1578.183 1162.961469 test 7755535
## 834 1251.902 1578.183 1300.832833 test 7755535
## 835 1251.902 1578.183 900.833497 test 7755535
## 836 1251.902 1578.183 1039.531671 test 7755535
## 837 1251.902 1578.183 1390.541016 test 7755535
## 838 1251.902 1578.183 1199.049449 test 7755535
## 839 1251.902 1578.183 590.684016 test 7755535
## 840 1251.902 1578.183 882.159698 test 7755535
## 841 1251.902 1578.183 1140.305246 test 7755535
## 842 1251.902 1578.183 898.820694 test 7755535
## 843 1251.902 1578.183 1055.923677 test 7755535
## 844 1251.902 1578.183 1495.764184 test 7755535
## 845 1251.902 1578.183 1083.667381 test 7755535
## 846 1251.902 1578.183 1148.195884 test 7755535
## 847 1251.902 1578.183 1085.966526 test 7755535
## 848 1251.902 1578.183 985.708549 test 7755535
## 849 1251.902 1578.183 1060.720539 test 7755535
## 850 1251.902 1578.183 1987.240008 test 7755535
## 851 1251.902 1578.183 1303.429358 test 7755535
## 852 1251.902 1578.183 1692.373852 test 7755535
## 853 1251.902 1578.183 1511.578844 test 7755535
## 854 1251.902 1578.183 1863.811462 test 7755535
## 855 1251.902 1578.183 1563.474795 test 7755535
## 856 1251.902 1578.183 1722.777900 test 7755535
## 857 1251.902 1578.183 1721.764752 test 7755535
## 858 1251.902 1578.183 1733.586850 test 7755535
## 859 1251.902 1578.183 1682.940042 test 7755535
## 860 1251.902 1578.183 1730.616612 test 7755535
## 861 1251.902 1578.183 2813.504110 test 7755535
## 862 1251.902 1578.183 2456.819784 test 7755535
## 863 1251.902 1578.183 3561.800892 test 7755535
## 864 1251.902 1578.183 3644.020530 test 7755535
## 865 1251.902 1578.183 3692.335945 test 7755535
## 866 1251.902 1578.183 4282.851484 test 7755535
## 867 1251.902 1578.183 1681.419622 test 7755535
## 868 1251.902 1578.183 2065.167330 test 7755535
## 869 1251.902 1578.183 2657.031807 test 7755535
## 870 1251.902 1578.183 1548.892496 test 7755535
## 871 1251.902 1578.183 2369.837745 test 7755535
## 872 1251.902 1578.183 4601.838516 test 7755535
## 873 1251.902 1578.183 4100.592832 test 7755535
## 874 1251.902 1578.183 4413.370233 test 7755535
## 875 1251.902 1578.183 6551.527489 test 7755535
## 876 1251.902 1578.183 6345.125857 test 7755535
## 877 1251.902 1578.183 9274.668720 test 7755535
## 878 1251.902 1578.183 4936.028477 test 7755535
## 879 1251.902 1578.183 4040.807776 test 7755535
## 880 1251.902 1578.183 4725.369941 test 7755535
## 881 1251.902 1578.183 7302.046094 test 7755535
## 882 1251.902 1578.183 5174.911266 test 7755535
## 883 1251.902 1578.183 8248.021851 test 7755535
## 884 1251.902 1578.183 18730.893978 test 7755535
## 885 1251.902 1578.183 6662.823478 test 7755535
## 886 1251.902 1578.183 16076.273416 test 7755535
## 887 1251.902 1578.183 10744.064646 test 7755535
## 888 1251.902 1578.183 11865.707921 test 7755535
## 889 1251.902 1578.183 15610.472098 test 7755535
## 890 1251.902 1578.183 10532.744399 test 7755535
## 891 1251.902 1578.183 9899.649226 test 7755535
## 892 1251.902 1578.183 11317.424767 test 7755535
## 893 1251.902 1578.183 13900.513609 test 7755535
## 894 1251.902 1578.183 13215.518272 test 7755535
## 895 1251.902 1578.183 7082.743718 test 7755535
## 896 1251.902 1578.183 16602.412286 test 7755535
## 897 1251.902 1578.183 5283.950913 test 7755535
## 898 1251.902 1578.183 4001.758678 test 7755535
## 899 1251.902 1578.183 4163.320859 test 7755535
## 900 1251.902 1578.183 3023.363967 test 7755535
## 901 1251.902 1578.183 2309.049466 test 7755535
## 902 1251.902 1578.183 2069.074134 test 7755535
## 903 1251.902 1578.183 1264.865887 test 7755535
## 904 1251.902 1578.183 1778.960283 test 7755535
## 905 1251.902 1578.183 1049.810521 test 7755535
## 906 1251.902 1578.183 1249.346384 test 7755535
## 907 1251.902 1578.183 1245.150176 test 7755535
## 908 1251.902 1578.183 1133.384667 test 7755535
## 909 1251.902 1578.183 1420.060888 test 7755535
## 910 1251.902 1578.183 1153.948040 test 7755535
## 911 1251.902 1578.183 690.117079 test 7755535
## 912 1251.902 1578.183 1020.207986 test 7755535
## 913 1251.902 1578.183 1513.399196 test 7755535
## 914 1251.902 1578.183 1556.052293 test 7755535
## 915 1251.902 1578.183 5662.631794 test 7755535
## 916 1251.902 1578.183 7050.885173 test 7755535
## 917 1251.902 1578.183 6031.535124 test 7755535
## 918 1251.902 1578.183 10493.038313 test 7755535
## 919 1251.902 1578.183 3993.319327 test 7755535
## 920 1251.902 1578.183 14805.800053 test 7755535
## 921 1251.902 1578.183 11671.736781 test 7755535
## 922 1251.902 1578.183 8628.688816 test 7755535
## 923 1251.902 1578.183 8638.280809 test 7755535
## 924 1251.902 1578.183 2974.659701 test 7755535
## 925 1251.902 1578.183 2829.070124 test 7755535
## 926 1251.902 1578.183 2697.095035 test 7755535
## 927 1251.902 1578.183 2452.794167 test 7755535
## 928 1251.902 1578.183 1574.970772 test 7755535
## 929 1251.902 1578.183 1166.990420 test 7755535
## 930 1251.902 1578.183 1635.058904 test 7755535
## 931 1251.902 1578.183 626.605425 test 7755535
## 932 1251.902 1578.183 1221.947528 test 7755535
## 933 1251.902 1578.183 942.407909 test 7755535
## 934 1251.902 1578.183 2288.577048 test 7755535
## 935 1251.902 1578.183 2857.945400 test 7755535
## 936 1251.902 1578.183 3112.898639 test 7755535
## 937 1251.902 1578.183 3716.452582 test 7755535
## 938 1251.902 1578.183 2193.587850 test 7755535
## 939 1251.902 1578.183 2960.203888 test 7755535
## 940 1251.902 1578.183 2853.711238 test 7755535
## 941 1251.902 1578.183 1326.363832 test 7755535
## 942 1251.902 1578.183 1258.453656 test 7755535
## 943 1251.902 1578.183 1869.757281 test 7755535
## 944 1251.902 1578.183 2796.720795 test 7755535
## 945 1251.902 1578.183 708.106030 test 7755535
## 946 1251.902 1578.183 1623.194528 test 7755535
## 947 1251.902 1578.183 1402.244445 test 7755535
## 948 1251.902 1578.183 1695.734684 test 7755535
## 949 1251.902 1578.183 686.301625 test 7755535
## 950 1251.902 1578.183 2446.262501 test 7755535
## 951 1251.902 1578.183 3113.637877 test 7755535
## 952 1251.902 1578.183 5010.412500 test 7755535
## 953 1251.902 1578.183 4760.469396 test 7755535
## 954 1251.902 1578.183 4430.310873 test 7755535
## 955 1251.902 1578.183 2674.349857 test 7755535
## 956 1251.902 1578.183 2418.459862 test 7755535
## 957 1251.902 1578.183 3133.439337 test 7755535
## 958 1251.902 1578.183 5395.844702 test 7755535
## 959 1251.902 1578.183 3015.052633 test 7755535
## 960 1251.902 1578.183 4166.896776 test 7755535
## 961 1251.902 1578.183 5177.962518 test 7755535
## 962 1251.902 1578.183 3604.851133 test 7755535
## 963 1251.902 1578.183 3812.917403 test 7755535
## 964 1251.902 1578.183 2931.023978 test 7755535
## 965 1251.902 1578.183 2502.391252 test 7755535
## 966 1251.902 1578.183 2937.455722 test 7755535
## 967 1251.902 1578.183 2640.203607 test 7755535
## 968 1251.902 1578.183 4864.951381 test 7755535
## 969 1251.902 1578.183 5759.322601 test 7755535
## 970 1251.902 1578.183 5453.992658 test 7755535
## 971 1251.902 1578.183 2394.681064 test 7755535
## 972 1251.902 1578.183 6707.589727 test 7755535
## 973 1251.902 1578.183 4609.472133 test 7755535
## 974 1251.902 1578.183 2304.182629 test 7755535
## 975 1251.902 1578.183 1723.002192 test 7755535
## 976 1251.902 1578.183 2915.259003 test 7755535
## 977 1251.902 1578.183 1083.462095 test 7755535
## 978 1251.902 1578.183 2195.227380 test 7755535
## 979 1251.902 1578.183 1115.427381 test 7755535
## 980 1251.902 1578.183 1829.960679 test 7755535
## 981 1251.902 1578.183 1692.006920 test 7755535
## 982 1251.902 1578.183 1786.516369 test 7755535
## 983 1251.902 1578.183 3253.061996 test 7755535
## 984 1251.902 1578.183 788.937349 test 7755535
## 985 1251.902 1578.183 1040.711435 test 7755535
## 986 1251.902 1578.183 1997.421330 test 7755535
## 987 1251.902 1578.183 2290.787519 test 7755535
## 988 1251.902 1578.183 1753.222313 test 7755535
## 989 1251.902 1578.183 1732.747940 test 7755535
## 990 1251.902 1578.183 1904.337053 test 7755535
## 991 1251.902 1578.183 1435.745421 test 7755535
## 992 1251.902 1578.183 1625.959602 test 7755535
## 993 1251.902 1578.183 1531.213769 test 7755535
## 994 1251.902 1578.183 1306.712730 test 7755535
## 995 1251.902 1578.183 1478.191137 test 7755535
## 996 1251.902 1578.183 1342.803645 test 7755535
## 997 1251.902 1578.183 995.036220 test 7755535
## 998 1251.902 1578.183 1426.376155 test 7755535
## 999 1251.902 1578.183 1100.459922 test 7755535
## 1000 1251.902 1578.183 1877.721935 test 7755535
## 1001 1251.902 1578.183 1355.806350 test 7755535
## 1002 1251.902 1578.183 1215.169978 test 7755535
## 1003 1251.902 1578.183 811.253079 test 7755535
## 1004 1251.902 1578.183 1180.079789 test 7755535
## 1005 1251.902 1578.183 1372.234631 test 7755535
## 1006 1251.902 1578.183 1814.957797 test 7755535
## 1007 1251.902 1578.183 1628.451481 test 7755535
## 1008 1251.902 1578.183 1683.823873 test 7755535
## 1009 1251.902 1578.183 1956.335303 test 7755535
## 1010 1251.902 1578.183 1680.708246 test 7755535
## 1011 1251.902 1578.183 1451.267161 test 7755535
## 1012 1251.902 1578.183 1763.039659 test 7755535
## 1013 1251.902 1578.183 974.058507 test 7755535
## 1014 1251.902 1578.183 1662.090290 test 7755535
## 1015 1251.902 1578.183 1482.591245 test 7755535
## 1016 1251.902 1578.183 1574.702464 test 7755535
## 1017 1251.902 1578.183 1413.375928 test 7755535
## 1018 1251.902 1578.183 1346.500632 test 7755535
## 1019 1251.902 1578.183 1173.696095 test 7755535
## 1020 1251.902 1578.183 1459.974593 test 7755535
## 1021 1251.902 1578.183 1124.938334 test 7755535
## 1022 1251.902 1578.183 1361.790523 test 7755535
## 1023 1251.902 1578.183 1448.104543 test 7755535
## 1024 1251.902 1578.183 1485.561012 test 7755535
## 1025 1251.902 1578.183 1324.264845 test 7755535
## 1026 1251.902 1578.183 1130.729049 test 7755535
## 1027 1251.902 1578.183 1364.310807 test 7755535
## 1028 1251.902 1578.183 986.110990 test 7755535
## 1029 1251.902 1578.183 2056.409297 test 7755535
## 1030 1251.902 1578.183 1052.272937 test 7755535
## 1031 1251.902 1578.183 641.167023 test 7755535
## 1032 1251.902 1578.183 1564.575132 test 7755535
## 1033 1251.902 1578.183 1296.287683 test 7755535
## 1034 1251.902 1578.183 1982.324810 test 7755535
## 1035 1251.902 1578.183 406.830035 test 7755535
## 1036 1251.902 1578.183 540.823840 test 7755535
## 1037 1251.902 1578.183 518.604808 test 7755535
## 1038 1251.902 1578.183 564.726004 test 7755535
## 1039 1251.902 1578.183 761.104887 test 7755535
## 1040 1251.902 1578.183 636.413653 test 7755535
## 1041 1251.902 1578.183 709.069215 test 7755535
## 1042 1251.902 1578.183 730.597918 test 7755535
## 1043 1251.902 1578.183 742.505612 test 7755535
## 1044 1251.902 1578.183 736.824627 test 7755535
## 1045 1251.902 1578.183 743.258093 test 7755535
## 1046 1251.902 1578.183 756.941412 test 7755535
## 1047 1251.902 1578.183 776.404868 test 7755535
## 1048 1251.902 1578.183 965.733972 test 7755535
## 1049 1251.902 1578.183 1368.656295 test 7755535
## 1050 1251.902 1578.183 1456.500219 test 7755535
## 1051 1251.902 1578.183 1344.600406 test 7755535
## 1052 1251.902 1578.183 1059.923131 test 7755535
## 1053 1251.902 1578.183 974.870814 test 7755535
## 1054 1251.902 1578.183 1115.639106 test 7755535
## 1055 1251.902 1578.183 762.492680 test 7755535
## 1056 1251.902 1578.183 510.473353 test 7755535
## 1057 1251.902 1578.183 1092.096853 test 7755535
## 1058 1251.902 1578.183 612.274765 test 7755535
## 1059 1251.902 1578.183 921.189518 test 7755535
## 1060 1251.902 1578.183 1139.659332 test 7755535
## 1061 1251.902 1578.183 1368.748866 test 7755535
## 1062 1251.902 1578.183 1314.501755 test 7755535
## 1063 1251.902 1578.183 1626.216744 test 7755535
## 1064 1251.902 1578.183 1177.322531 test 7755535
## 1065 1251.902 1578.183 704.395036 test 7755535
## 1066 1251.902 1578.183 601.651211 test 7755535
## 1067 1251.902 1578.183 915.902854 test 7755535
## 1068 1251.902 1578.183 1368.792718 test 7755535
## 1069 1251.902 1578.183 1245.150115 test 7755535
## 1070 1251.902 1578.183 577.950164 test 7755535
## 1071 1251.902 1578.183 407.406028 test 7755535
## 1072 1251.902 1578.183 460.014507 test 7755535
## 1073 1251.902 1578.183 705.311679 test 7755535
## 1074 1251.902 1578.183 613.444444 test 7755535
## 1075 1251.902 1578.183 903.574124 test 7755535
## 1076 1251.902 1578.183 718.533076 test 7755535
## 1077 1251.902 1578.183 924.136961 test 7755535
## 1078 1251.902 1578.183 878.625863 test 7755535
## 1079 1251.902 1578.183 1247.153033 test 7755535
## 1080 1251.902 1578.183 1628.534900 test 7755535
## 1081 1251.902 1578.183 2027.255679 test 7755535
## 1082 1251.902 1578.183 550.108010 test 7755535
## 1083 1251.902 1578.183 381.817875 test 7755535
## 1084 1251.902 1578.183 733.332847 test 7755535
## 1085 1251.902 1578.183 806.380391 test 7755535
## 1086 1251.902 1578.183 1271.405072 test 7755535
## 1087 1251.902 1578.183 852.755884 test 7755535
## 1088 1251.902 1578.183 896.520241 test 7755535
## 1089 1251.902 1578.183 938.990011 test 7755535
## 1090 1251.902 1578.183 1200.273077 test 7755535
## 1091 1251.902 1578.183 1103.595990 test 7755535
## 1092 1251.902 1578.183 1336.768679 test 7755535
## 1093 1251.902 1578.183 1115.314322 test 7755535
## 1094 1251.902 1578.183 1522.566845 test 7755535
## 1095 1251.902 1578.183 893.046767 test 7755535
## 1096 1251.902 1578.183 1046.386732 test 7755535
## 1097 1251.902 1578.183 1171.736212 test 7755535
## 1098 1251.902 1578.183 1395.454669 test 7755535
## 1099 1251.902 1578.183 646.131546 test 7755535
## 1100 1251.902 1578.183 342.185379 test 7755535
## 1101 1251.902 1578.183 907.112411 test 7755535
## 1102 1251.902 1578.183 1004.118691 test 7755535
## 1103 1251.902 1578.183 1255.286063 test 7755535
## 1104 1251.902 1578.183 1212.787334 test 7755535
## 1105 1251.902 1578.183 879.462281 test 7755535
## 1106 1251.902 1578.183 330.271379 test 7755535
## 1107 1251.902 1578.183 1254.717114 test 7755535
## 1108 1251.902 1578.183 963.839894 test 7755535
## 1109 1251.902 1578.183 376.635384 test 7755535
## 1110 1251.902 1578.183 267.366702 test 7755535
## 1111 1251.902 1578.183 843.148852 test 7755535
## 1112 1251.902 1578.183 1218.897032 test 7755535
## 1113 1251.902 1578.183 581.548835 test 7755535
## 1114 1251.902 1578.183 784.270756 test 7755535
## 1115 1251.902 1578.183 1573.439907 test 7755535
## 1116 1251.902 1578.183 1110.297150 test 7755535
## 1117 1251.902 1578.183 1096.229805 test 7755535
## 1118 1251.902 1578.183 776.928477 test 7755535
## 1119 1251.902 1578.183 867.338379 test 7755535
## 1120 1251.902 1578.183 679.840422 test 7755535
## 1121 1251.902 1578.183 329.113007 test 7755535
## 1122 1251.902 1578.183 234.742893 test 7755535
## 1123 1251.902 1578.183 356.055567 test 7755535
## 1124 1251.902 1578.183 137.898286 test 7755535
## 1125 1251.902 1578.183 90.445895 test 7755535
## 1126 1251.902 1578.183 89.685206 test 7755535
## 1127 1251.902 1578.183 66.813343 test 7755535
## 1128 1251.902 1578.183 124.498454 test 7755535
## 1129 1251.902 1578.183 195.375567 test 7755535
## 1130 1251.902 1578.183 324.662250 test 7755535
## 1131 1251.902 1578.183 374.608753 test 7755535
## 1132 1251.902 1578.183 324.153732 test 7755535
## 1133 1251.902 1578.183 395.003578 test 7755535
## 1134 1251.902 1578.183 482.488558 test 7755535
## 1135 1251.902 1578.183 642.532462 test 7755535
## 1136 1251.902 1578.183 876.438869 test 7755535
## 1137 1251.902 1578.183 340.927793 test 7755535
## 1138 1251.902 1578.183 239.954947 test 7755535
## 1139 1251.902 1578.183 360.281219 test 7755535
## 1140 1251.902 1578.183 359.104062 test 7755535
## 1141 1251.902 1578.183 463.600387 test 7755535
## 1142 1251.902 1578.183 616.218496 test 7755535
## 1143 1251.902 1578.183 579.564377 test 7755535
## 1144 1251.902 1578.183 454.772957 test 7755535
## 1145 1251.902 1578.183 538.380079 test 7755535
## 1146 1251.902 1578.183 744.929979 test 7755535
## 1147 1251.902 1578.183 796.672313 test 7755535
## 1148 1251.902 1578.183 515.633221 test 7755535
## 1149 1251.902 1578.183 788.052566 test 7755535
## 1150 1251.902 1578.183 361.493381 test 7755535
## 1151 1251.902 1578.183 462.265710 test 7755535
## 1152 1251.902 1578.183 782.359702 test 7755535
## 1153 1251.902 1578.183 640.987821 test 7755535
## 1154 1251.902 1578.183 593.248190 test 7755535
## 1155 1251.902 1578.183 292.999661 test 7755535
## 1156 1251.902 1578.183 245.045498 test 7755535
## 1157 1251.902 1578.183 271.512455 test 7755535
## 1158 1251.902 1578.183 205.288578 test 7755535
## 1159 1251.902 1578.183 170.023655 test 7755535
## 1160 1251.902 1578.183 216.036462 test 7755535
## 1161 1251.902 1578.183 158.361096 test 7755535
## 1162 1251.902 1578.183 279.719550 test 7755535
## 1163 1251.902 1578.183 244.763900 test 7755535
## 1164 1251.902 1578.183 138.653968 test 7755535
## 1165 1251.902 1578.183 61.185120 test 7755535
## 1166 1251.902 1578.183 275.294298 test 7755535
## 1167 1251.902 1578.183 478.266312 test 7755535
## 1168 1251.902 1578.183 214.724560 test 7755535
## 1169 1251.902 1578.183 859.462291 test 7755535
## 1170 1251.902 1578.183 334.397398 test 7755535
## 1171 1251.902 1578.183 336.620827 test 7755535
## 1172 1251.902 1578.183 286.440848 test 7755535
## 1173 1251.902 1578.183 531.017250 test 7755535
## 1174 1251.902 1578.183 608.673162 test 7755535
## 1175 1251.902 1578.183 954.599077 test 7755535
## 1176 1251.902 1578.183 807.569014 test 7755535
## 1177 1251.902 1578.183 1101.347311 test 7755535
## 1178 1251.902 1578.183 722.830689 test 7755535
## 1179 1251.902 1578.183 1173.914914 test 7755535
## 1180 1251.902 1578.183 442.353191 test 7755535
## 1181 1251.902 1578.183 362.561609 test 7755535
## 1182 1251.902 1578.183 840.469058 test 7755535
## 1183 1251.902 1578.183 1021.059685 test 7755535
## 1184 1251.902 1578.183 734.483504 test 7755535
## 1185 1251.902 1578.183 563.826849 test 7755535
## 1186 1251.902 1578.183 860.115941 test 7755535
## 1187 1251.902 1578.183 1601.811441 test 7755535
## 1188 1251.902 1578.183 230.272096 test 7755535
## 1189 1251.902 1578.183 716.699869 test 7755535
## 1190 1251.902 1578.183 685.923837 test 7755535
## 1191 1251.902 1578.183 1485.250225 test 7755535
## 1192 1251.902 1578.183 1737.138451 test 7755535
## 1193 1251.902 1578.183 2034.896947 test 7755535
## 1194 1251.902 1578.183 1266.450603 test 7755535
## 1195 1251.902 1578.183 1451.872211 test 7755535
## 1196 1251.902 1578.183 1719.411323 test 7755535
## 1197 1251.902 1578.183 1613.671748 test 7755535
## 1198 1251.902 1578.183 1006.239138 test 7755535
## 1199 1251.902 1578.183 1844.477115 test 7755535
## 1200 1251.902 1578.183 1791.671690 test 7755535
## 1201 1251.902 1578.183 1158.718717 test 7755535
## 1202 1251.902 1578.183 1430.171183 test 7755535
## 1203 1251.902 1578.183 973.562309 test 7755535
## 1204 1251.902 1578.183 400.509624 test 7755535
## 1205 1251.902 1578.183 857.558808 test 7755535
## 1206 1251.902 1578.183 825.555749 test 7755535
## 1207 1251.902 1578.183 951.564513 test 7755535
## 1208 1251.902 1578.183 697.116484 test 7755535
## 1209 1251.902 1578.183 798.037598 test 7755535
## 1210 1251.902 1578.183 937.759136 test 7755535
## 1211 1251.902 1578.183 880.963075 test 7755535
## 1212 1251.902 1578.183 1463.303307 test 7755535
## 1213 1251.902 1578.183 610.075659 test 7755535
## 1214 1251.902 1578.183 616.333876 test 7755535
## 1215 1251.902 1578.183 785.058834 test 7755535
## 1216 1251.902 1578.183 547.855332 test 7755535
## 1217 1251.902 1578.183 479.026075 test 7755535
## 1218 1251.902 1578.183 838.961872 test 7755535
## 1219 1251.902 1578.183 717.376656 test 7755535
## 1220 1251.902 1578.183 1098.500438 test 7755535
## 1221 1251.902 1578.183 751.428537 test 7755535
## 1222 1251.902 1578.183 663.244990 test 7755535
## 1223 1251.902 1578.183 455.962938 test 7755535
## 1224 1251.902 1578.183 1737.732782 test 7755535
## 1225 1251.902 1578.183 1287.852799 test 7755535
## 1226 1251.902 1578.183 865.097224 test 7755535
## 1227 1251.902 1578.183 1063.649870 test 7755535
## 1228 1251.902 1578.183 939.444948 test 7755535
## 1229 1251.902 1578.183 1218.810943 test 7755535
## 1230 1251.902 1578.183 1437.438531 test 7755535
## 1231 1251.902 1578.183 880.900193 test 7755535
## 1232 1251.902 1578.183 1065.719446 test 7755535
## 1233 1251.902 1578.183 892.033441 test 7755535
## 1234 1251.902 1578.183 1281.681187 test 7755535
## 1235 1251.902 1578.183 1504.464965 test 7755535
## 1236 1251.902 1578.183 1031.243369 test 7755535
## 1237 1251.902 1578.183 810.770717 test 7755535
## 1238 1251.902 1578.183 1140.203508 test 7755535
## 1239 1251.902 1578.183 616.289465 test 7755535
## 1240 1251.902 1578.183 578.875876 test 7755535
## 1241 1251.902 1578.183 579.566864 test 7755535
## 1242 1251.902 1578.183 729.685184 test 7755535
## 1243 1251.902 1578.183 1001.263217 test 7755535
## 1244 1251.902 1578.183 1027.773979 test 7755535
## 1245 1251.902 1578.183 965.719460 test 7755535
## 1246 1251.902 1578.183 1062.478115 test 7755535
## 1247 1251.902 1578.183 883.098239 test 7755535
## 1248 1251.902 1578.183 632.759744 test 7755535
## 1249 1251.902 1578.183 751.747508 test 7755535
## 1250 1251.902 1578.183 559.921656 test 7755535
## 1251 1251.902 1578.183 604.143477 test 7755535
## 1252 1251.902 1578.183 519.306565 test 7755535
## 1253 1251.902 1578.183 507.573411 test 7755535
## 1254 1251.902 1578.183 710.913430 test 7755535
## 1255 1251.902 1578.183 1021.024918 test 7755535
## 1256 1251.902 1578.183 1023.373218 test 7755535
## 1257 1251.902 1578.183 1229.883413 test 7755535
## 1258 1251.902 1578.183 1110.126687 test 7755535
## 1259 1251.902 1578.183 1734.154735 test 7755535
## 1260 1251.902 1578.183 1254.616996 test 7755535
## 1261 1251.902 1578.183 1099.957498 test 7755535
## 1262 1251.902 1578.183 1850.072216 test 7755535
## 1263 1251.902 1578.183 856.547831 test 7755535
## 1264 1251.902 1578.183 1040.452196 test 7755535
## 1265 1251.902 1578.183 1186.635993 test 7755535
## 1266 1251.902 1578.183 1292.173049 test 7755535
## 1267 1251.902 1578.183 1129.366201 test 7755535
## 1268 1251.902 1578.183 1091.545753 test 7755535
## 1269 1251.902 1578.183 875.165320 test 7755535
## 1270 1251.902 1578.183 1133.681938 test 7755535
## 1271 1251.902 1578.183 1062.489257 test 7755535
## 1272 1251.902 1578.183 1278.426228 test 7755535
## 1273 1251.902 1578.183 866.287803 test 7755535
## 1274 1251.902 1578.183 738.051554 test 7755535
## 1275 1251.902 1578.183 814.152292 test 7755535
## 1276 1251.902 1578.183 664.593806 test 7755535
## 1277 1251.902 1578.183 721.133571 test 7755535
## 1278 1251.902 1578.183 1271.719174 test 7755535
## 1279 1251.902 1578.183 845.517344 test 7755535
## 1280 1251.902 1578.183 927.148362 test 7755535
## 1281 1251.902 1578.183 1447.460340 test 7755535
## 1282 1251.902 1578.183 843.088052 test 7755535
## 1283 1251.902 1578.183 1088.382229 test 7755535
## 1284 1251.902 1578.183 1197.034361 test 7755535
## 1285 1251.902 1578.183 976.088490 test 7755535
## 1286 1251.902 1578.183 1311.568003 test 7755535
## 1287 1251.902 1578.183 1762.536337 test 7755535
## 1288 1251.902 1578.183 1533.674357 test 7755535
## 1289 1251.902 1578.183 1667.621405 test 7755535
## 1290 1251.902 1578.183 1262.354102 test 7755535
## 1291 1251.902 1578.183 1368.657822 test 7755535
## 1292 1251.902 1578.183 1437.108414 test 7755535
## 1293 1251.902 1578.183 918.203874 test 7755535
## 1294 1251.902 1578.183 1559.823232 test 7755535
## 1295 1251.902 1578.183 1751.667419 test 7755535
## 1296 1251.902 1578.183 2158.794258 test 7755535
## 1297 1251.902 1578.183 1689.109295 test 7755535
## 1298 1251.902 1578.183 1517.226116 test 7755535
## 1299 1251.902 1578.183 1852.198573 test 7755535
## 1300 1251.902 1578.183 2289.940747 test 7755535
## 1301 1251.902 1578.183 1796.280339 test 7755535
## 1302 1251.902 1578.183 1754.432754 test 7755535
## 1303 1251.902 1578.183 1370.584492 test 7755535
## 1304 1251.902 1578.183 1248.601486 test 7755535
## 1305 1251.902 1578.183 1176.392214 test 7755535
## 1306 1251.902 1578.183 1324.225541 test 7755535
## 1307 1251.902 1578.183 896.848269 test 7755535
## 1308 1251.902 1578.183 949.680900 test 7755535
## 1309 1251.902 1578.183 2634.720782 test 7755535
## 1310 1251.902 1578.183 2886.398359 test 7755535
## 1311 1251.902 1578.183 1761.552487 test 7755535
## 1312 1251.902 1578.183 1694.165257 test 7755535
## 1313 1251.902 1578.183 1314.255049 test 7755535
## 1314 1251.902 1578.183 3970.363508 test 7755535
## 1315 1251.902 1578.183 6477.380097 test 7755535
## 1316 1251.902 1578.183 4753.695401 test 7755535
## 1317 1251.902 1578.183 5091.354767 test 7755535
## 1318 1251.902 1578.183 3949.645646 test 7755535
## 1319 1251.902 1578.183 5261.906848 test 7755535
## 1320 1251.902 1578.183 6204.873039 test 7755535
## 1321 1251.902 1578.183 6960.896764 test 7755535
## 1322 1251.902 1578.183 6514.006877 test 7755535
## 1323 1251.902 1578.183 7347.892129 test 7755535
## 1324 1251.902 1578.183 8483.150645 test 7755535
## 1325 1251.902 1578.183 4377.529404 test 7755535
## 1326 1251.902 1578.183 5783.619439 test 7755535
## 1327 1251.902 1578.183 14769.870219 test 7755535
## 1328 1251.902 1578.183 9396.413240 test 7755535
## 1329 1251.902 1578.183 17383.050102 test 7755535
## 1330 1251.902 1578.183 14991.428611 test 7755535
## 1331 1251.902 1578.183 11545.077367 test 7755535
## 1332 1251.902 1578.183 4595.846485 test 7755535
## 1333 1251.902 1578.183 4292.106490 test 7755535
## 1334 1251.902 1578.183 3826.830500 test 7755535
## 1335 1251.902 1578.183 14463.879858 test 7755535
## 1336 1251.902 1578.183 6381.215565 test 7755535
## 1337 1251.902 1578.183 6000.792160 test 7755535
## 1338 1251.902 1578.183 7945.514836 test 7755535
## 1339 1251.902 1578.183 16367.234667 test 7755535
## 1340 1251.902 1578.183 9896.188324 test 7755535
## 1341 1251.902 1578.183 4098.502605 test 7755535
## 1342 1251.902 1578.183 17730.555746 test 7755535
## 1343 1251.902 1578.183 6909.731574 test 7755535
## 1344 1251.902 1578.183 5388.523924 test 7755535
## 1345 1251.902 1578.183 6236.407402 test 7755535
## 1346 1251.902 1578.183 3998.743343 test 7755535
## 1347 1251.902 1578.183 3036.898326 test 7755535
## 1348 1251.902 1578.183 532.426526 test 7755535
## 1349 1251.902 1578.183 568.241979 test 7755535
## 1350 1251.902 1578.183 929.959975 test 7755535
## 1351 1251.902 1578.183 2631.633572 test 7755535
## 1352 1251.902 1578.183 4924.619723 test 7755535
## 1353 1251.902 1578.183 17304.684869 test 7755535
## 1354 1251.902 1578.183 13164.855151 test 7755535
## 1355 1251.902 1578.183 10546.599151 test 7755535
## 1356 1251.902 1578.183 8682.533711 test 7755535
## 1357 1251.902 1578.183 9018.237363 test 7755535
## 1358 1251.902 1578.183 3832.785788 test 7755535
## 1359 1251.902 1578.183 3830.150405 test 7755535
## 1360 1251.902 1578.183 3857.966056 test 7755535
## 1361 1251.902 1578.183 3571.415776 test 7755535
## 1362 1251.902 1578.183 1769.844798 test 7755535
## 1363 1251.902 1578.183 1300.978876 test 7755535
## 1364 1251.902 1578.183 2185.448530 test 7755535
## 1365 1251.902 1578.183 1294.145313 test 7755535
## 1366 1251.902 1578.183 1886.800241 test 7755535
## 1367 1251.902 1578.183 931.725648 test 7755535
## 1368 1251.902 1578.183 2341.052179 test 7755535
## 1369 1251.902 1578.183 2395.310403 test 7755535
## 1370 1251.902 1578.183 3401.623375 test 7755535
## 1371 1251.902 1578.183 1829.623155 test 7755535
## 1372 1251.902 1578.183 574.337199 test 7755535
## 1373 1251.902 1578.183 669.012044 test 7755535
## 1374 1251.902 1578.183 351.002206 test 7755535
## 1375 1251.902 1578.183 2026.476311 test 7755535
## 1376 1251.902 1578.183 3982.077516 test 7755535
## 1377 1251.902 1578.183 5949.093820 test 7755535
## 1378 1251.902 1578.183 4250.872966 test 7755535
## 1379 1251.902 1578.183 7643.823148 test 7755535
## 1380 1251.902 1578.183 6852.879139 test 7755535
## 1381 1251.902 1578.183 5124.302282 test 7755535
## 1382 1251.902 1578.183 1511.349730 test 7755535
## 1383 1251.902 1578.183 2487.337885 test 7755535
## 1384 1251.902 1578.183 2274.135849 test 7755535
## 1385 1251.902 1578.183 1454.778057 test 7755535
## 1386 1251.902 1578.183 3280.532546 test 7755535
## 1387 1251.902 1578.183 2585.572391 test 7755535
## 1388 1251.902 1578.183 2733.424453 test 7755535
## 1389 1251.902 1578.183 4191.205433 test 7755535
## 1390 1251.902 1578.183 2352.386904 test 7755535
## 1391 1251.902 1578.183 2732.443283 test 7755535
## 1392 1251.902 1578.183 2329.594627 test 7755535
## 1393 1251.902 1578.183 2956.038415 test 7755535
## 1394 1251.902 1578.183 1910.111045 test 7755535
## 1395 1251.902 1578.183 1815.550765 test 7755535
## 1396 1251.902 1578.183 3199.146909 test 7755535
## 1397 1251.902 1578.183 1913.957375 test 7755535
## 1398 1251.902 1578.183 2550.932859 test 7755535
## 1399 1251.902 1578.183 3183.289147 test 7755535
## 1400 1251.902 1578.183 3149.860824 test 7755535
## 1401 1251.902 1578.183 1768.089493 test 7755535
## 1402 1251.902 1578.183 6573.977444 test 7755535
## 1403 1251.902 1578.183 4253.912243 test 7755535
## 1404 1251.902 1578.183 2964.535137 test 7755535
## 1405 1251.902 1578.183 2934.650705 test 7755535
## 1406 1251.902 1578.183 4035.738766 test 7755535
## 1407 1251.902 1578.183 3262.468221 test 7755535
## 1408 1251.902 1578.183 1342.992943 test 7755535
## 1409 1251.902 1578.183 1428.638512 test 7755535
## 1410 1251.902 1578.183 1440.201921 test 7755535
## 1411 1251.902 1578.183 1581.543557 test 7755535
## 1412 1251.902 1578.183 1259.242976 test 7755535
## 1413 1251.902 1578.183 2236.363908 test 7755535
## 1414 1251.902 1578.183 1283.939081 test 7755535
## 1415 1251.902 1578.183 2264.694913 test 7755535
## 1416 1251.902 1578.183 2659.789285 test 7755535
## 1417 1251.902 1578.183 1457.862178 test 7755535
## 1418 1251.902 1578.183 2042.323646 test 7755535
## 1419 1251.902 1578.183 1915.202557 test 7755535
## 1420 1251.902 1578.183 1809.211130 test 7755535
## 1421 1251.902 1578.183 1658.966467 test 7755535
## 1422 1251.902 1578.183 2034.241502 test 7755535
## 1423 1251.902 1578.183 831.721182 test 7755535
## 1424 1251.902 1578.183 1352.644464 test 7755535
## 1425 1251.902 1578.183 701.724427 test 7755535
## 1426 1251.902 1578.183 1294.363830 test 7755535
## 1427 1251.902 1578.183 1920.313483 test 7755535
## 1428 1251.902 1578.183 1121.395085 test 7755535
## 1429 1251.902 1578.183 1812.340090 test 7755535
## 1430 1251.902 1578.183 1234.360419 test 7755535
## 1431 1251.902 1578.183 1593.260639 test 7755535
## 1432 1251.902 1578.183 1399.299664 test 7755535
## 1433 1251.902 1578.183 2103.880482 test 7755535
## 1434 1251.902 1578.183 1108.854626 test 7755535
## 1435 1251.902 1578.183 1743.656105 test 7755535
## 1436 1251.902 1578.183 1476.507144 test 7755535
## 1437 1251.902 1578.183 1140.161268 test 7755535
## 1438 1251.902 1578.183 1284.215041 test 7755535
## 1439 1251.902 1578.183 835.926072 test 7755535
## 1440 1251.902 1578.183 1826.572322 test 7755535
## 1441 1251.902 1578.183 1322.413347 test 7755535
## 1442 1251.902 1578.183 1307.679909 test 7755535
## 1443 1251.902 1578.183 1357.184914 test 7755535
## 1444 1251.902 1578.183 778.043541 test 7755535
## 1445 1251.902 1578.183 623.792485 test 7755535
## 1446 1251.902 1578.183 954.282439 test 7755535
## 1447 1251.902 1578.183 561.691515 test 7755535
## 1448 1251.902 1578.183 643.949649 test 7755535
## 1449 1251.902 1578.183 1345.448787 test 7755535
## 1450 1251.902 1578.183 1184.584904 test 7755535
## 1451 1251.902 1578.183 827.113119 test 7755535
## 1452 1251.902 1578.183 1048.176947 test 7755535
## 1453 1251.902 1578.183 1103.085597 test 7755535
## 1454 1251.902 1578.183 1178.036332 test 7755535
## 1455 1251.902 1578.183 1261.651851 test 7755535
## 1456 1251.902 1578.183 1229.965302 test 7755535
## 1457 1251.902 1578.183 1289.565904 test 7755535
## 1458 1251.902 1578.183 1561.791563 test 7755535
## 1459 1251.902 1578.183 1706.949308 test 7755535
## 1460 1251.902 1578.183 1456.397392 test 7755535
## 1461 1251.902 1578.183 1271.522330 test 7755535
## 1462 1251.902 1578.183 1915.262133 test 7755535
## 1463 1251.902 1578.183 404.763592 test 7755535
## 1464 1251.902 1578.183 402.019127 test 7755535
## 1465 1251.902 1578.183 1112.347253 test 7755535
## 1466 1251.902 1578.183 1216.987320 test 7755535
## 1467 1251.902 1578.183 1066.727514 test 7755535
## 1468 1251.902 1578.183 629.415175 test 7755535
## 1469 1251.902 1578.183 691.095904 test 7755535
## 1470 1251.902 1578.183 861.746378 test 7755535
## 1471 1251.902 1578.183 678.509106 test 7755535
## 1472 1251.902 1578.183 734.779724 test 7755535
## 1473 1251.902 1578.183 648.169921 test 7755535
## 1474 1251.902 1578.183 718.931230 test 7755535
## 1475 1251.902 1578.183 766.248746 test 7755535
## 1476 1251.902 1578.183 748.201184 test 7755535
## 1477 1251.902 1578.183 741.390913 test 7755535
## 1478 1251.902 1578.183 744.391477 test 7755535
## 1479 1251.902 1578.183 709.805936 test 7755535
## 1480 1251.902 1578.183 741.498101 test 7755535
## 1481 1251.902 1578.183 674.974108 test 7755535
## 1482 1251.902 1578.183 612.936058 test 7755535
## 1483 1251.902 1578.183 757.602682 test 7755535
## 1484 1251.902 1578.183 620.575773 test 7755535
## 1485 1251.902 1578.183 650.435057 test 7755535
## 1486 1251.902 1578.183 1018.433226 test 7755535
## 1487 1251.902 1578.183 1094.137807 test 7755535
## 1488 1251.902 1578.183 883.432988 test 7755535
## 1489 1251.902 1578.183 891.998740 test 7755535
## 1490 1251.902 1578.183 872.827850 test 7755535
## 1491 1251.902 1578.183 806.641674 test 7755535
## 1492 1251.902 1578.183 937.559077 test 7755535
## 1493 1251.902 1578.183 479.545321 test 7755535
## 1494 1251.902 1578.183 448.104518 test 7755535
## 1495 1251.902 1578.183 459.992170 test 7755535
## 1496 1251.902 1578.183 449.596338 test 7755535
## 1497 1251.902 1578.183 769.396738 test 7755535
## 1498 1251.902 1578.183 915.445874 test 7755535
## 1499 1251.902 1578.183 1150.964322 test 7755535
## 1500 1251.902 1578.183 816.419835 test 7755535
## 1501 1251.902 1578.183 1294.787886 test 7755535
## 1502 1251.902 1578.183 760.272765 test 7755535
## 1503 1251.902 1578.183 984.061617 test 7755535
## 1504 1251.902 1578.183 1423.472712 test 7755535
## 1505 1251.902 1578.183 1318.592128 test 7755535
## 1506 1251.902 1578.183 1335.970448 test 7755535
## 1507 1251.902 1578.183 1554.817373 test 7755535
## 1508 1251.902 1578.183 1522.551401 test 7755535
## 1509 1251.902 1578.183 1484.520975 test 7755535
## 1510 1251.902 1578.183 1332.121399 test 7755535
## 1511 1251.902 1578.183 650.270690 test 7755535
## 1512 1251.902 1578.183 691.185370 test 7755535
## 1513 1251.902 1578.183 500.680290 test 7755535
## 1514 1251.902 1578.183 609.038074 test 7755535
## 1515 1251.902 1578.183 624.562230 test 7755535
## 1516 1251.902 1578.183 979.461611 test 7755535
## 1517 1251.902 1578.183 798.922949 test 7755535
## 1518 1251.902 1578.183 856.073093 test 7755535
## 1519 1251.902 1578.183 1141.326432 test 7755535
## 1520 1251.902 1578.183 1186.340999 test 7755535
## 1521 1251.902 1578.183 1158.554678 test 7755535
## 1522 1251.902 1578.183 843.266286 test 7755535
## 1523 1251.902 1578.183 552.150256 test 7755535
## 1524 1251.902 1578.183 463.038258 test 7755535
## 1525 1251.902 1578.183 497.563360 test 7755535
## 1526 1251.902 1578.183 927.697941 test 7755535
## 1527 1251.902 1578.183 836.625452 test 7755535
## 1528 1251.902 1578.183 1095.984750 test 7755535
## 1529 1251.902 1578.183 1758.789679 test 7755535
## 1530 1251.902 1578.183 665.715618 test 7755535
## 1531 1251.902 1578.183 807.397322 test 7755535
## 1532 1251.902 1578.183 929.223643 test 7755535
## 1533 1251.902 1578.183 1088.613237 test 7755535
## 1534 1251.902 1578.183 920.624101 test 7755535
## 1535 1251.902 1578.183 1372.666658 test 7755535
## 1536 1251.902 1578.183 1403.812700 test 7755535
## 1537 1251.902 1578.183 828.231867 test 7755535
## 1538 1251.902 1578.183 710.663456 test 7755535
## 1539 1251.902 1578.183 509.815916 test 7755535
## 1540 1251.902 1578.183 614.757601 test 7755535
## 1541 1251.902 1578.183 751.658123 test 7755535
## 1542 1251.902 1578.183 1106.931325 test 7755535
## 1543 1251.902 1578.183 1002.891361 test 7755535
## 1544 1251.902 1578.183 1189.149307 test 7755535
## 1545 1251.902 1578.183 1095.933601 test 7755535
## 1546 1251.902 1578.183 1210.717116 test 7755535
## 1547 1251.902 1578.183 768.810014 test 7755535
## 1548 1251.902 1578.183 680.643611 test 7755535
## 1549 1251.902 1578.183 472.226558 test 7755535
## 1550 1251.902 1578.183 215.005996 test 7755535
## 1551 1251.902 1578.183 241.093458 test 7755535
## 1552 1251.902 1578.183 179.641315 test 7755535
## 1553 1251.902 1578.183 107.648965 test 7755535
## 1554 1251.902 1578.183 117.075118 test 7755535
## 1555 1251.902 1578.183 137.957158 test 7755535
## 1556 1251.902 1578.183 202.337350 test 7755535
## 1557 1251.902 1578.183 276.501656 test 7755535
## 1558 1251.902 1578.183 401.841091 test 7755535
## 1559 1251.902 1578.183 414.236392 test 7755535
## 1560 1251.902 1578.183 627.070667 test 7755535
## 1561 1251.902 1578.183 471.012681 test 7755535
## 1562 1251.902 1578.183 590.147849 test 7755535
## 1563 1251.902 1578.183 690.288951 test 7755535
## 1564 1251.902 1578.183 629.201996 test 7755535
## 1565 1251.902 1578.183 389.084429 test 7755535
## 1566 1251.902 1578.183 353.355337 test 7755535
## 1567 1251.902 1578.183 490.883400 test 7755535
## 1568 1251.902 1578.183 997.481841 test 7755535
## 1569 1251.902 1578.183 992.833847 test 7755535
## 1570 1251.902 1578.183 1025.212655 test 7755535
## 1571 1251.902 1578.183 838.075530 test 7755535
## 1572 1251.902 1578.183 1085.788637 test 7755535
## 1573 1251.902 1578.183 754.678702 test 7755535
## 1574 1251.902 1578.183 246.302022 test 7755535
## 1575 1251.902 1578.183 242.362308 test 7755535
## 1576 1251.902 1578.183 454.689602 test 7755535
## 1577 1251.902 1578.183 651.164677 test 7755535
## 1578 1251.902 1578.183 229.507819 test 7755535
## 1579 1251.902 1578.183 584.452553 test 7755535
## 1580 1251.902 1578.183 1073.065616 test 7755535
## 1581 1251.902 1578.183 626.605554 test 7755535
## 1582 1251.902 1578.183 478.049870 test 7755535
## 1583 1251.902 1578.183 414.549619 test 7755535
## 1584 1251.902 1578.183 329.310107 test 7755535
## 1585 1251.902 1578.183 413.633033 test 7755535
## 1586 1251.902 1578.183 180.787964 test 7755535
## 1587 1251.902 1578.183 233.203759 test 7755535
## 1588 1251.902 1578.183 433.947838 test 7755535
## 1589 1251.902 1578.183 376.125993 test 7755535
## 1590 1251.902 1578.183 506.151476 test 7755535
## 1591 1251.902 1578.183 338.208103 test 7755535
## 1592 1251.902 1578.183 66.872620 test 7755535
## 1593 1251.902 1578.183 136.037023 test 7755535
## 1594 1251.902 1578.183 125.070076 test 7755535
## 1595 1251.902 1578.183 135.032666 test 7755535
## 1596 1251.902 1578.183 84.971650 test 7755535
## 1597 1251.902 1578.183 50.828335 test 7755535
## 1598 1251.902 1578.183 82.944708 test 7755535
## 1599 1251.902 1578.183 96.989870 test 7755535
## 1600 1251.902 1578.183 292.487282 test 7755535
## 1601 1251.902 1578.183 427.724976 test 7755535
## 1602 1251.902 1578.183 374.686175 test 7755535
## 1603 1251.902 1578.183 435.099320 test 7755535
## 1604 1251.902 1578.183 493.408949 test 7755535
## 1605 1251.902 1578.183 536.163597 test 7755535
## 1606 1251.902 1578.183 600.840641 test 7755535
## 1607 1251.902 1578.183 791.752946 test 7755535
## 1608 1251.902 1578.183 1131.554778 test 7755535
## 1609 1251.902 1578.183 599.322199 test 7755535
## 1610 1251.902 1578.183 696.021886 test 7755535
## 1611 1251.902 1578.183 603.778832 test 7755535
## 1612 1251.902 1578.183 392.313950 test 7755535
## 1613 1251.902 1578.183 423.103639 test 7755535
## 1614 1251.902 1578.183 732.032618 test 7755535
## 1615 1251.902 1578.183 770.546348 test 7755535
## 1616 1251.902 1578.183 930.553559 test 7755535
## 1617 1251.902 1578.183 900.571910 test 7755535
## 1618 1251.902 1578.183 1340.921571 test 7755535
## 1619 1251.902 1578.183 1667.650019 test 7755535
## 1620 1251.902 1578.183 837.855117 test 7755535
## 1621 1251.902 1578.183 1077.614069 test 7755535
## 1622 1251.902 1578.183 1617.001927 test 7755535
## 1623 1251.902 1578.183 1276.653446 test 7755535
## 1624 1251.902 1578.183 2146.883901 test 7755535
## 1625 1251.902 1578.183 2715.525142 test 7755535
## 1626 1251.902 1578.183 449.807113 test 7755535
## 1627 1251.902 1578.183 1084.210250 test 7755535
## 1628 1251.902 1578.183 739.640952 test 7755535
## 1629 1251.902 1578.183 1241.440498 test 7755535
## 1630 1251.902 1578.183 1524.487574 test 7755535
## 1631 1251.902 1578.183 535.919882 test 7755535
## 1632 1251.902 1578.183 886.965698 test 7755535
## 1633 1251.902 1578.183 754.087024 test 7755535
## 1634 1251.902 1578.183 916.411246 test 7755535
## 1635 1251.902 1578.183 794.949219 test 7755535
## 1636 1251.902 1578.183 642.328250 test 7755535
## 1637 1251.902 1578.183 650.732633 test 7755535
## 1638 1251.902 1578.183 365.217272 test 7755535
## 1639 1251.902 1578.183 464.200207 test 7755535
## 1640 1251.902 1578.183 1029.895078 test 7755535
## 1641 1251.902 1578.183 451.916480 test 7755535
## 1642 1251.902 1578.183 583.851082 test 7755535
## 1643 1251.902 1578.183 824.054849 test 7755535
## 1644 1251.902 1578.183 1034.801281 test 7755535
## 1645 1251.902 1578.183 652.623199 test 7755535
## 1646 1251.902 1578.183 889.470816 test 7755535
## 1647 1251.902 1578.183 756.624295 test 7755535
## 1648 1251.902 1578.183 862.633668 test 7755535
## 1649 1251.902 1578.183 696.427344 test 7755535
## 1650 1251.902 1578.183 588.818411 test 7755535
## 1651 1251.902 1578.183 636.689648 test 7755535
## 1652 1251.902 1578.183 655.971985 test 7755535
## 1653 1251.902 1578.183 568.584263 test 7755535
## 1654 1251.902 1578.183 397.403058 test 7755535
## 1655 1251.902 1578.183 321.501849 test 7755535
## 1656 1251.902 1578.183 842.273785 test 7755535
## 1657 1251.902 1578.183 701.626788 test 7755535
## 1658 1251.902 1578.183 673.205871 test 7755535
## 1659 1251.902 1578.183 884.947305 test 7755535
## 1660 1251.902 1578.183 649.156535 test 7755535
## 1661 1251.902 1578.183 633.868907 test 7755535
## 1662 1251.902 1578.183 798.644686 test 7755535
## 1663 1251.902 1578.183 778.463781 test 7755535
## 1664 1251.902 1578.183 926.190841 test 7755535
## 1665 1251.902 1578.183 1102.206999 test 7755535
## 1666 1251.902 1578.183 781.459442 test 7755535
## 1667 1251.902 1578.183 1371.508361 test 7755535
## 1668 1251.902 1578.183 984.381836 test 7755535
## 1669 1251.902 1578.183 1121.090592 test 7755535
## 1670 1251.902 1578.183 1482.555475 test 7755535
## 1671 1251.902 1578.183 1357.392005 test 7755535
## 1672 1251.902 1578.183 1344.085879 test 7755535
## 1673 1251.902 1578.183 1313.140479 test 7755535
## 1674 1251.902 1578.183 806.998535 test 7755535
## 1675 1251.902 1578.183 887.745068 test 7755535
## 1676 1251.902 1578.183 898.134692 test 7755535
## 1677 1251.902 1578.183 982.148471 test 7755535
## 1678 1251.902 1578.183 806.620865 test 7755535
## 1679 1251.902 1578.183 782.295679 test 7755535
## 1680 1251.902 1578.183 861.066719 test 7755535
## 1681 1251.902 1578.183 627.702439 test 7755535
## 1682 1251.902 1578.183 557.845780 test 7755535
## 1683 1251.902 1578.183 501.044283 test 7755535
## 1684 1251.902 1578.183 603.322649 test 7755535
## 1685 1251.902 1578.183 472.695442 test 7755535
## 1686 1251.902 1578.183 460.593170 test 7755535
## 1687 1251.902 1578.183 635.490429 test 7755535
## 1688 1251.902 1578.183 655.540727 test 7755535
## 1689 1251.902 1578.183 758.704007 test 7755535
## 1690 1251.902 1578.183 747.630968 test 7755535
## 1691 1251.902 1578.183 624.069527 test 7755535
## 1692 1251.902 1578.183 864.709314 test 7755535
## 1693 1251.902 1578.183 564.805135 test 7755535
## 1694 1251.902 1578.183 986.377539 test 7755535
## 1695 1251.902 1578.183 1190.881337 test 7755535
## 1696 1251.902 1578.183 824.399311 test 7755535
## 1697 1251.902 1578.183 983.318060 test 7755535
## 1698 1251.902 1578.183 1575.863395 test 7755535
## 1699 1251.902 1578.183 862.596364 test 7755535
## 1700 1251.902 1578.183 1397.357441 test 7755535
## 1701 1251.902 1578.183 1782.331344 test 7755535
## 1702 1251.902 1578.183 1403.635262 test 7755535
## 1703 1251.902 1578.183 1153.768635 test 7755535
## 1704 1251.902 1578.183 1047.849903 test 7755535
## 1705 1251.902 1578.183 669.153275 test 7755535
## 1706 1251.902 1578.183 965.589347 test 7755535
## 1707 1251.902 1578.183 852.386085 test 7755535
## 1708 1251.902 1578.183 1028.906617 test 7755535
## 1709 1251.902 1578.183 1433.507158 test 7755535
## 1710 1251.902 1578.183 1781.196884 test 7755535
## 1711 1251.902 1578.183 1295.695544 test 7755535
## 1712 1251.902 1578.183 1520.853427 test 7755535
## 1713 1251.902 1578.183 1006.252565 test 7755535
## 1714 1251.902 1578.183 1003.275924 test 7755535
## 1715 1251.902 1578.183 1053.374376 test 7755535
## 1716 1251.902 1578.183 805.637976 test 7755535
## 1717 1251.902 1578.183 1175.054807 test 7755535
## 1718 1251.902 1578.183 888.519834 test 7755535
## 1719 1251.902 1578.183 1575.677666 test 7755535
## 1720 1251.902 1578.183 1308.143910 test 7755535
## 1721 1251.902 1578.183 1015.740238 test 7755535
## 1722 1251.902 1578.183 1051.628293 test 7755535
## 1723 1251.902 1578.183 897.834135 test 7755535
## 1724 1251.902 1578.183 950.659628 test 7755535
## 1725 1251.902 1578.183 737.794781 test 7755535
## 1726 1251.902 1578.183 927.949879 test 7755535
## 1727 1251.902 1578.183 1159.767494 test 7755535
## 1728 1251.902 1578.183 1013.333022 test 7755535
## 1729 1251.902 1578.183 975.425665 test 7755535
## 1730 1251.902 1578.183 1021.968474 test 7755535
## 1731 1251.902 1578.183 1124.868867 test 7755535
## 1732 1251.902 1578.183 1009.205330 test 7755535
## 1733 1251.902 1578.183 1241.480952 test 7755535
## 1734 1251.902 1578.183 1675.238841 test 7755535
## 1735 1251.902 1578.183 1206.151116 test 7755535
## 1736 1251.902 1578.183 1384.385619 test 7755535
## 1737 1251.902 1578.183 1162.270824 test 7755535
## 1738 1251.902 1578.183 1658.328935 test 7755535
## 1739 1251.902 1578.183 1628.107914 test 7755535
## 1740 1251.902 1578.183 1350.965888 test 7755535
## 1741 1251.902 1578.183 1473.797726 test 7755535
## 1742 1251.902 1578.183 1472.437483 test 7755535
## 1743 1251.902 1578.183 1243.717955 test 7755535
## 1744 1251.902 1578.183 1348.448317 test 7755535
## 1745 1251.902 1578.183 1170.810124 test 7755535
## 1746 1251.902 1578.183 1173.296951 test 7755535
## 1747 1251.902 1578.183 1563.449536 test 7755535
## 1748 1251.902 1578.183 1166.285175 test 7755535
## 1749 1251.902 1578.183 1562.610768 test 7755535
## 1750 1251.902 1578.183 1559.457275 test 7755535
## 1751 1251.902 1578.183 1543.896483 test 7755535
## 1752 1251.902 1578.183 1101.582386 test 7755535
## 1753 1251.902 1578.183 1104.526735 test 7755535
## 1754 1251.902 1578.183 1076.261828 test 7755535
## 1755 1251.902 1578.183 1151.451936 test 7755535
## 1756 1251.902 1578.183 1136.583438 test 7755535
## 1757 1251.902 1578.183 1544.059248 test 7755535
## 1758 1251.902 1578.183 1807.074086 test 7755535
## 1759 1251.902 1578.183 2853.205436 test 7755535
## 1760 1251.902 1578.183 3111.450236 test 7755535
## 1761 1251.902 1578.183 3740.694413 test 7755535
## 1762 1251.902 1578.183 3899.051027 test 7755535
## 1763 1251.902 1578.183 3597.593365 test 7755535
## 1764 1251.902 1578.183 4806.513729 test 7755535
## 1765 1251.902 1578.183 3332.807363 test 7755535
## 1766 1251.902 1578.183 1689.451954 test 7755535
## 1767 1251.902 1578.183 3508.465699 test 7755535
## 1768 1251.902 1578.183 4396.164021 test 7755535
## 1769 1251.902 1578.183 2163.577083 test 7755535
## 1770 1251.902 1578.183 4421.697354 test 7755535
## 1771 1251.902 1578.183 4830.776202 test 7755535
## 1772 1251.902 1578.183 6531.367043 test 7755535
## 1773 1251.902 1578.183 6661.313367 test 7755535
## 1774 1251.902 1578.183 5526.045903 test 7755535
## 1775 1251.902 1578.183 3255.145588 test 7755535
## 1776 1251.902 1578.183 3006.044479 test 7755535
## 1777 1251.902 1578.183 4511.657143 test 7755535
## 1778 1251.902 1578.183 2549.131845 test 7755535
## 1779 1251.902 1578.183 1535.154122 test 7755535
## 1780 1251.902 1578.183 8802.574911 test 7755535
## 1781 1251.902 1578.183 8050.804170 test 7755535
## 1782 1251.902 1578.183 4331.662083 test 7755535
## 1783 1251.902 1578.183 5039.158357 test 7755535
## 1784 1251.902 1578.183 2925.476430 test 7755535
## 1785 1251.902 1578.183 6539.076995 test 7755535
## 1786 1251.902 1578.183 2692.403213 test 7755535
## 1787 1251.902 1578.183 3867.513297 test 7755535
## 1788 1251.902 1578.183 3069.450935 test 7755535
## 1789 1251.902 1578.183 4247.529525 test 7755535
## 1790 1251.902 1578.183 4133.695351 test 7755535
## 1791 1251.902 1578.183 4126.918835 test 7755535
## 1792 1251.902 1578.183 4620.384032 test 7755535
## 1793 1251.902 1578.183 3381.866199 test 7755535
## 1794 1251.902 1578.183 2033.617543 test 7755535
## 1795 1251.902 1578.183 4974.334643 test 7755535
## 1796 1251.902 1578.183 11279.679320 test 7755535
## 1797 1251.902 1578.183 11513.916514 test 7755535
## 1798 1251.902 1578.183 9015.071609 test 7755535
## 1799 1251.902 1578.183 4043.787122 test 7755535
## 1800 1251.902 1578.183 3507.847258 test 7755535
## 1801 1251.902 1578.183 3001.720915 test 7755535
## 1802 1251.902 1578.183 5532.411305 test 7755535
## 1803 1251.902 1578.183 1591.157696 test 7755535
## 1804 1251.902 1578.183 1696.799247 test 7755535
## 1805 1251.902 1578.183 6013.516568 test 7755535
## 1806 1251.902 1578.183 1733.580293 test 7755535
## 1807 1251.902 1578.183 2106.385473 test 7755535
## 1808 1251.902 1578.183 4257.788298 test 7755535
## 1809 1251.902 1578.183 2541.229570 test 7755535
## 1810 1251.902 1578.183 1317.982983 test 7755535
## 1811 1251.902 1578.183 3215.636181 test 7755535
## 1812 1251.902 1578.183 2372.243697 test 7755535
## 1813 1251.902 1578.183 4825.170071 test 7755535
## 1814 1251.902 1578.183 4792.671846 test 7755535
## 1815 1251.902 1578.183 4278.442188 test 7755535
## 1816 1251.902 1578.183 6313.869809 test 7755535
## 1817 1251.902 1578.183 4279.702676 test 7755535
## 1818 1251.902 1578.183 4331.784860 test 7755535
## 1819 1251.902 1578.183 1521.668365 test 7755535
## 1820 1251.902 1578.183 831.490596 test 7755535
## 1821 1251.902 1578.183 2270.053865 test 7755535
## 1822 1251.902 1578.183 2936.513966 test 7755535
## 1823 1251.902 1578.183 2291.711629 test 7755535
## 1824 1251.902 1578.183 2425.638537 test 7755535
## 1825 1251.902 1578.183 3013.165388 test 7755535
## 1826 1251.902 1578.183 3310.621876 test 7755535
## 1827 1251.902 1578.183 1129.201000 test 7755535
## 1828 1251.902 1578.183 2448.436738 test 7755535
## 1829 1251.902 1578.183 2582.840259 test 7755535
## 1830 1251.902 1578.183 4105.430629 test 7755535
## 1831 1251.902 1578.183 5622.422219 test 7755535
## 1832 1251.902 1578.183 3784.164513 test 7755535
## 1833 1251.902 1578.183 5038.816945 test 7755535
## 1834 1251.902 1578.183 6552.439147 test 7755535
## 1835 1251.902 1578.183 5092.832847 test 7755535
## 1836 1251.902 1578.183 4427.505908 test 7755535
## 1837 1251.902 1578.183 4068.229208 test 7755535
## 1838 1251.902 1578.183 4287.567805 test 7755535
## 1839 1251.902 1578.183 3051.471240 test 7755535
## 1840 1251.902 1578.183 2420.101354 test 7755535
## 1841 1251.902 1578.183 2273.689483 test 7755535
## 1842 1251.902 1578.183 2664.525280 test 7755535
## 1843 1251.902 1578.183 3409.666226 test 7755535
## 1844 1251.902 1578.183 2976.301823 test 7755535
## 1845 1251.902 1578.183 1205.765979 test 7755535
## 1846 1251.902 1578.183 1182.261160 test 7755535
## 1847 1251.902 1578.183 1956.451130 test 7755535
## 1848 1251.902 1578.183 1919.086516 test 7755535
## 1849 1251.902 1578.183 1619.018971 test 7755535
## 1850 1251.902 1578.183 1153.857766 test 7755535
## 1851 1251.902 1578.183 1390.364801 test 7755535
## 1852 1251.902 1578.183 2089.548062 test 7755535
## 1853 1251.902 1578.183 1874.352068 test 7755535
## 1854 1251.902 1578.183 1787.262479 test 7755535
## 1855 1251.902 1578.183 1662.663833 test 7755535
## 1856 1251.902 1578.183 1778.538358 test 7755535
## 1857 1251.902 1578.183 1036.415360 test 7755535
## 1858 1251.902 1578.183 1042.737987 test 7755535
## 1859 1251.902 1578.183 1791.848916 test 7755535
## 1860 1251.902 1578.183 1305.977419 test 7755535
## 1861 1251.902 1578.183 1200.713199 test 7755535
## 1862 1251.902 1578.183 1153.920680 test 7755535
## 1863 1251.902 1578.183 698.160140 test 7755535
## 1864 1251.902 1578.183 837.804033 test 7755535
## 1865 1251.902 1578.183 839.145449 test 7755535
## 1866 1251.902 1578.183 732.801930 test 7755535
## 1867 1251.902 1578.183 1029.391208 test 7755535
## 1868 1251.902 1578.183 1507.518455 test 7755535
## 1869 1251.902 1578.183 883.513576 test 7755535
## 1870 1251.902 1578.183 1079.451436 test 7755535
## 1871 1251.902 1578.183 1073.338073 test 7755535
## 1872 1251.902 1578.183 814.595511 test 7755535
## 1873 1251.902 1578.183 1013.276598 test 7755535
## 1874 1251.902 1578.183 711.457631 test 7755535
## 1875 1251.902 1578.183 788.895887 test 7755535
## 1876 1251.902 1578.183 623.474418 test 7755535
## 1877 1251.902 1578.183 467.605423 test 7755535
## 1878 1251.902 1578.183 706.270451 test 7755535
## 1879 1251.902 1578.183 936.361864 test 7755535
## 1880 1251.902 1578.183 810.988410 test 7755535
## 1881 1251.902 1578.183 600.421325 test 7755535
## 1882 1251.902 1578.183 756.621550 test 7755535
## 1883 1251.902 1578.183 735.763954 test 7755535
## 1884 1251.902 1578.183 1071.837918 test 7755535
## 1885 1251.902 1578.183 922.067567 test 7755535
## 1886 1251.902 1578.183 1015.867976 test 7755535
## 1887 1251.902 1578.183 1228.715646 test 7755535
## 1888 1251.902 1578.183 1286.768923 test 7755535
## 1889 1251.902 1578.183 1461.340179 test 7755535
## 1890 1251.902 1578.183 1031.017265 test 7755535
## 1891 1251.902 1578.183 1728.395749 test 7755535
## 1892 1251.902 1578.183 760.477173 test 7755535
## 1893 1251.902 1578.183 752.459568 test 7755535
## 1894 1251.902 1578.183 810.986380 test 7755535
## 1895 1251.902 1578.183 648.547272 test 7755535
## 1896 1251.902 1578.183 723.367313 test 7755535
## 1897 1251.902 1578.183 637.274841 test 7755535
## 1898 1251.902 1578.183 701.252266 test 7755535
## 1899 1251.902 1578.183 757.526843 test 7755535
## 1900 1251.902 1578.183 818.036736 test 7755535
## 1901 1251.902 1578.183 706.674056 test 7755535
## 1902 1251.902 1578.183 911.658059 test 7755535
## 1903 1251.902 1578.183 931.212086 test 7755535
## 1904 1251.902 1578.183 741.718970 test 7755535
## 1905 1251.902 1578.183 738.860149 test 7755535
## 1906 1251.902 1578.183 743.347255 test 7755535
## 1907 1251.902 1578.183 743.894014 test 7755535
## 1908 1251.902 1578.183 713.693565 test 7755535
## 1909 1251.902 1578.183 709.512907 test 7755535
## 1910 1251.902 1578.183 718.719132 test 7755535
## 1911 1251.902 1578.183 832.935821 test 7755535
## 1912 1251.902 1578.183 932.285146 test 7755535
## 1913 1251.902 1578.183 728.183621 test 7755535
## 1914 1251.902 1578.183 770.572402 test 7755535
## 1915 1251.902 1578.183 950.193700 test 7755535
## 1916 1251.902 1578.183 859.963274 test 7755535
## 1917 1251.902 1578.183 982.207695 test 7755535
## 1918 1251.902 1578.183 872.324520 test 7755535
## 1919 1251.902 1578.183 686.547459 test 7755535
## 1920 1251.902 1578.183 395.705972 test 7755535
## 1921 1251.902 1578.183 426.868973 test 7755535
## 1922 1251.902 1578.183 550.906826 test 7755535
## 1923 1251.902 1578.183 549.582412 test 7755535
## 1924 1251.902 1578.183 482.404876 test 7755535
## 1925 1251.902 1578.183 455.916002 test 7755535
## 1926 1251.902 1578.183 556.865443 test 7755535
## 1927 1251.902 1578.183 518.997715 test 7755535
## 1928 1251.902 1578.183 492.391641 test 7755535
## 1929 1251.902 1578.183 732.569640 test 7755535
## 1930 1251.902 1578.183 660.163246 test 7755535
## 1931 1251.902 1578.183 605.659928 test 7755535
## 1932 1251.902 1578.183 630.036674 test 7755535
## 1933 1251.902 1578.183 731.496553 test 7755535
## 1934 1251.902 1578.183 638.521916 test 7755535
## 1935 1251.902 1578.183 1070.103662 test 7755535
## 1936 1251.902 1578.183 918.011424 test 7755535
## 1937 1251.902 1578.183 682.571039 test 7755535
## 1938 1251.902 1578.183 688.177256 test 7755535
## 1939 1251.902 1578.183 952.118845 test 7755535
## 1940 1251.902 1578.183 1065.402056 test 7755535
## 1941 1251.902 1578.183 776.764316 test 7755535
## 1942 1251.902 1578.183 1052.438603 test 7755535
## 1943 1251.902 1578.183 1101.691290 test 7755535
## 1944 1251.902 1578.183 1551.288070 test 7755535
## 1945 1251.902 1578.183 1237.172805 test 7755535
## 1946 1251.902 1578.183 1480.056380 test 7755535
## 1947 1251.902 1578.183 1210.735632 test 7755535
## 1948 1251.902 1578.183 766.256157 test 7755535
## 1949 1251.902 1578.183 1219.740493 test 7755535
## 1950 1251.902 1578.183 767.200657 test 7755535
## 1951 1251.902 1578.183 772.749758 test 7755535
## 1952 1251.902 1578.183 2076.645991 test 7755535
## 1953 1251.902 1578.183 1262.882919 test 7755535
## 1954 1251.902 1578.183 1255.746292 test 7755535
## 1955 1251.902 1578.183 1277.696242 test 7755535
## 1956 1251.902 1578.183 1442.330853 test 7755535
## 1957 1251.902 1578.183 1317.299209 test 7755535
## 1958 1251.902 1578.183 681.999023 test 7755535
## 1959 1251.902 1578.183 869.761363 test 7755535
## 1960 1251.902 1578.183 714.311142 test 7755535
## 1961 1251.902 1578.183 880.335810 test 7755535
## 1962 1251.902 1578.183 725.487616 test 7755535
## 1963 1251.902 1578.183 717.510345 test 7755535
## 1964 1251.902 1578.183 585.554154 test 7755535
## 1965 1251.902 1578.183 436.417564 test 7755535
## 1966 1251.902 1578.183 324.191401 test 7755535
## 1967 1251.902 1578.183 200.603397 test 7755535
## 1968 1251.902 1578.183 462.912382 test 7755535
## 1969 1251.902 1578.183 551.135542 test 7755535
## 1970 1251.902 1578.183 479.056255 test 7755535
## 1971 1251.902 1578.183 826.368388 test 7755535
## 1972 1251.902 1578.183 722.776964 test 7755535
## 1973 1251.902 1578.183 844.660950 test 7755535
## 1974 1251.902 1578.183 791.653794 test 7755535
## 1975 1251.902 1578.183 871.037088 test 7755535
## 1976 1251.902 1578.183 866.299251 test 7755535
## 1977 1251.902 1578.183 740.593897 test 7755535
## 1978 1251.902 1578.183 1181.141325 test 7755535
## 1979 1251.902 1578.183 682.685507 test 7755535
## 1980 1251.902 1578.183 754.039012 test 7755535
## 1981 1251.902 1578.183 820.762686 test 7755535
## 1982 1251.902 1578.183 540.355851 test 7755535
## 1983 1251.902 1578.183 600.265677 test 7755535
## 1984 1251.902 1578.183 547.984058 test 7755535
## 1985 1251.902 1578.183 407.896677 test 7755535
## 1986 1251.902 1578.183 195.504155 test 7755535
## 1987 1251.902 1578.183 13.112453 test 7755535
## 1988 1251.902 1578.183 28.249453 test 7755535
## 1989 1251.902 1578.183 95.827148 test 7755535
## 1990 1251.902 1578.183 346.927732 test 7755535
## 1991 1251.902 1578.183 273.391679 test 7755535
## 1992 1251.902 1578.183 471.675119 test 7755535
## 1993 1251.902 1578.183 487.520595 test 7755535
## 1994 1251.902 1578.183 281.626486 test 7755535
## 1995 1251.902 1578.183 198.828789 test 7755535
## 1996 1251.902 1578.183 409.166938 test 7755535
## 1997 1251.902 1578.183 550.144099 test 7755535
## 1998 1251.902 1578.183 508.227934 test 7755535
## 1999 1251.902 1578.183 222.698138 test 7755535
## 2000 1251.902 1578.183 201.008409 test 7755535
## 2001 1251.902 1578.183 377.601184 test 7755535
## 2002 1251.902 1578.183 307.290076 test 7755535
## 2003 1251.902 1578.183 230.204155 test 7755535
## 2004 1251.902 1578.183 297.157690 test 7755535
## 2005 1251.902 1578.183 78.622339 test 7755535
## 2006 1251.902 1578.183 325.559165 test 7755535
## 2007 1251.902 1578.183 348.315172 test 7755535
## 2008 1251.902 1578.183 342.288292 test 7755535
## 2009 1251.902 1578.183 139.046708 test 7755535
## 2010 1251.902 1578.183 336.453873 test 7755535
## 2011 1251.902 1578.183 311.198560 test 7755535
## 2012 1251.902 1578.183 236.411256 test 7755535
## 2013 1251.902 1578.183 281.456166 test 7755535
## 2014 1251.902 1578.183 713.842993 test 7755535
## 2015 1251.902 1578.183 605.344705 test 7755535
## 2016 1251.902 1578.183 55.854770 test 7755535
## 2017 1251.902 1578.183 464.936052 test 7755535
## 2018 1251.902 1578.183 1012.800123 test 7755535
## 2019 1251.902 1578.183 885.810100 test 7755535
## 2020 1251.902 1578.183 654.986207 test 7755535
## 2021 1251.902 1578.183 490.158362 test 7755535
## 2022 1251.902 1578.183 607.921574 test 7755535
## 2023 1251.902 1578.183 508.046146 test 7755535
## 2024 1251.902 1578.183 688.705188 test 7755535
## 2025 1251.902 1578.183 974.129485 test 7755535
## 2026 1251.902 1578.183 1346.988904 test 7755535
## 2027 1251.902 1578.183 731.013898 test 7755535
## 2028 1251.902 1578.183 925.451198 test 7755535
## 2029 1251.902 1578.183 1155.643220 test 7755535
## 2030 1251.902 1578.183 966.714289 test 7755535
## 2031 1251.902 1578.183 1096.360297 test 7755535
## 2032 1251.902 1578.183 1137.678805 test 7755535
## 2033 1251.902 1578.183 926.113299 test 7755535
## 2034 1251.902 1578.183 1191.553999 test 7755535
## 2035 1251.902 1578.183 1281.020231 test 7755535
## 2036 1251.902 1578.183 1067.261269 test 7755535
## 2037 1251.902 1578.183 1166.320448 test 7755535
## 2038 1251.902 1578.183 878.875263 test 7755535
## 2039 1251.902 1578.183 823.734488 test 7755535
## 2040 1251.902 1578.183 1791.181697 test 7755535
## 2041 1251.902 1578.183 1869.198975 test 7755535
## 2042 1251.902 1578.183 1918.212865 test 7755535
## 2043 1251.902 1578.183 1072.896992 test 7755535
## 2044 1251.902 1578.183 1068.074022 test 7755535
## 2045 1251.902 1578.183 756.665406 test 7755535
## 2046 1251.902 1578.183 867.394941 test 7755535
## 2047 1251.902 1578.183 1142.849614 test 7755535
## 2048 1251.902 1578.183 911.871466 test 7755535
## 2049 1251.902 1578.183 943.118186 test 7755535
## 2050 1251.902 1578.183 1455.657016 test 7755535
## 2051 1251.902 1578.183 1049.554217 test 7755535
## 2052 1251.902 1578.183 513.967565 test 7755535
## 2053 1251.902 1578.183 536.755637 test 7755535
## 2054 1251.902 1578.183 459.821275 test 7755535
## 2055 1251.902 1578.183 524.189830 test 7755535
## 2056 1251.902 1578.183 535.573966 test 7755535
## 2057 1251.902 1578.183 597.204382 test 7755535
## 2058 1251.902 1578.183 596.419392 test 7755535
## 2059 1251.902 1578.183 759.359840 test 7755535
## 2060 1251.902 1578.183 801.662136 test 7755535
## 2061 1251.902 1578.183 599.229974 test 7755535
## 2062 1251.902 1578.183 390.525115 test 7755535
## 2063 1251.902 1578.183 442.343540 test 7755535
## 2064 1251.902 1578.183 468.395611 test 7755535
## 2065 1251.902 1578.183 416.207252 test 7755535
## 2066 1251.902 1578.183 519.815214 test 7755535
## 2067 1251.902 1578.183 462.875429 test 7755535
## 2068 1251.902 1578.183 366.285608 test 7755535
## 2069 1251.902 1578.183 691.226982 test 7755535
## 2070 1251.902 1578.183 754.143337 test 7755535
## 2071 1251.902 1578.183 1196.894898 test 7755535
## 2072 1251.902 1578.183 783.051991 test 7755535
## 2073 1251.902 1578.183 914.414946 test 7755535
## 2074 1251.902 1578.183 757.041236 test 7755535
## 2075 1251.902 1578.183 967.689775 test 7755535
## 2076 1251.902 1578.183 964.667059 test 7755535
## 2077 1251.902 1578.183 875.631659 test 7755535
## 2078 1251.902 1578.183 913.116322 test 7755535
## 2079 1251.902 1578.183 969.422579 test 7755535
## 2080 1251.902 1578.183 1190.114612 test 7755535
## 2081 1251.902 1578.183 990.048679 test 7755535
## 2082 1251.902 1578.183 1373.717600 test 7755535
## 2083 1251.902 1578.183 561.456675 test 7755535
## 2084 1251.902 1578.183 812.870358 test 7755535
## 2085 1251.902 1578.183 825.176527 test 7755535
## 2086 1251.902 1578.183 866.866964 test 7755535
## 2087 1251.902 1578.183 840.425706 test 7755535
## 2088 1251.902 1578.183 862.347313 test 7755535
## 2089 1251.902 1578.183 856.058603 test 7755535
## 2090 1251.902 1578.183 775.726127 test 7755535
## 2091 1251.902 1578.183 850.636511 test 7755535
## 2092 1251.902 1578.183 852.969346 test 7755535
## 2093 1251.902 1578.183 772.083861 test 7755535
## 2094 1251.902 1578.183 803.570431 test 7755535
## 2095 1251.902 1578.183 524.179087 test 7755535
## 2096 1251.902 1578.183 518.786454 test 7755535
## 2097 1251.902 1578.183 959.621785 test 7755535
## 2098 1251.902 1578.183 612.203572 test 7755535
## 2099 1251.902 1578.183 784.233482 test 7755535
## 2100 1251.902 1578.183 733.856748 test 7755535
## 2101 1251.902 1578.183 816.297054 test 7755535
## 2102 1251.902 1578.183 759.884806 test 7755535
## 2103 1251.902 1578.183 480.482980 test 7755535
## 2104 1251.902 1578.183 361.694919 test 7755535
## 2105 1251.902 1578.183 1397.921811 test 7755535
## 2106 1251.902 1578.183 966.211592 test 7755535
## 2107 1251.902 1578.183 1045.298989 test 7755535
## 2108 1251.902 1578.183 680.724257 test 7755535
## 2109 1251.902 1578.183 1083.089196 test 7755535
## 2110 1251.902 1578.183 762.365701 test 7755535
## 2111 1251.902 1578.183 922.312004 test 7755535
## 2112 1251.902 1578.183 1182.800850 test 7755535
## 2113 1251.902 1578.183 1096.943293 test 7755535
## 2114 1251.902 1578.183 1065.360206 test 7755535
## 2115 1251.902 1578.183 1299.181420 test 7755535
## 2116 1251.902 1578.183 1007.327966 test 7755535
## 2117 1251.902 1578.183 1067.929697 test 7755535
## 2118 1251.902 1578.183 1207.109481 test 7755535
## 2119 1251.902 1578.183 1238.394200 test 7755535
## 2120 1251.902 1578.183 1286.252882 test 7755535
## 2121 1251.902 1578.183 1392.638858 test 7755535
## 2122 1251.902 1578.183 1393.450450 test 7755535
## 2123 1251.902 1578.183 1154.216067 test 7755535
## 2124 1251.902 1578.183 1153.346350 test 7755535
## 2125 1251.902 1578.183 1051.199171 test 7755535
## 2126 1251.902 1578.183 1525.503350 test 7755535
## 2127 1251.902 1578.183 1081.732142 test 7755535
## 2128 1251.902 1578.183 1098.307937 test 7755535
## 2129 1251.902 1578.183 1295.402673 test 7755535
## 2130 1251.902 1578.183 1201.230685 test 7755535
## 2131 1251.902 1578.183 1298.172464 test 7755535
## 2132 1251.902 1578.183 1103.419837 test 7755535
## 2133 1251.902 1578.183 1630.788729 test 7755535
## 2134 1251.902 1578.183 822.865234 test 7755535
## 2135 1251.902 1578.183 769.217203 test 7755535
## 2136 1251.902 1578.183 1298.044960 test 7755535
## 2137 1251.902 1578.183 1203.761131 test 7755535
## 2138 1251.902 1578.183 1132.741703 test 7755535
## 2139 1251.902 1578.183 1290.231936 test 7755535
## 2140 1251.902 1578.183 1306.036573 test 7755535
## 2141 1251.902 1578.183 1691.309971 test 7755535
## 2142 1251.902 1578.183 1371.892309 test 7755535
## 2143 1251.902 1578.183 1496.155696 test 7755535
## 2144 1251.902 1578.183 1351.558697 test 7755535
## 2145 1251.902 1578.183 1544.558125 test 7755535
## 2146 1251.902 1578.183 1387.026955 test 7755535
## 2147 1251.902 1578.183 1344.312742 test 7755535
## 2148 1251.902 1578.183 1264.524499 test 7755535
## 2149 1251.902 1578.183 1285.554768 test 7755535
## 2150 1251.902 1578.183 1097.708443 test 7755535
## 2151 1251.902 1578.183 1176.094083 test 7755535
## 2152 1251.902 1578.183 1175.926773 test 7755535
## 2153 1251.902 1578.183 1172.705719 test 7755535
## 2154 1251.902 1578.183 1163.090274 test 7755535
## 2155 1251.902 1578.183 1163.904782 test 7755535
## 2156 1251.902 1578.183 1164.577400 test 7755535
## 2157 1251.902 1578.183 1166.553671 test 7755535
## 2158 1251.902 1578.183 1238.617794 test 7755535
## 2159 1251.902 1578.183 1237.837700 test 7755535
## 2160 1251.902 1578.183 1239.137447 test 7755535
## 2161 1251.902 1578.183 1228.588711 test 7755535
## 2162 1251.902 1578.183 1130.252637 test 7755535
## 2163 1251.902 1578.183 1331.736921 test 7755535
## 2164 1251.902 1578.183 1289.508546 test 7755535
## 2165 1251.902 1578.183 2393.126093 test 7755535
## 2166 1251.902 1578.183 2099.276093 test 7755535
## 2167 1251.902 1578.183 4013.343519 test 7755535
## 2168 1251.902 1578.183 4285.950591 test 7755535
## 2169 1251.902 1578.183 2895.622127 test 7755535
## 2170 1251.902 1578.183 3077.025166 test 7755535
## 2171 1251.902 1578.183 2708.630970 test 7755535
## 2172 1251.902 1578.183 1298.504863 test 7755535
## 2173 1251.902 1578.183 2672.943497 test 7755535
## 2174 1251.902 1578.183 2129.144439 test 7755535
## 2175 1251.902 1578.183 3532.290670 test 7755535
## 2176 1251.902 1578.183 3462.188522 test 7755535
## 2177 1251.902 1578.183 2900.051883 test 7755535
## 2178 1251.902 1578.183 1615.261843 test 7755535
## 2179 1251.902 1578.183 1313.333380 test 7755535
## 2180 1251.902 1578.183 953.109291 test 7755535
## 2181 1251.902 1578.183 1225.633813 test 7755535
## 2182 1251.902 1578.183 1940.001438 test 7755535
## 2183 1251.902 1578.183 1950.437979 test 7755535
## 2184 1251.902 1578.183 1543.104879 test 7755535
## 2185 1251.902 1578.183 1033.015847 test 7755535
## 2186 1251.902 1578.183 1261.258026 test 7755535
## 2187 1251.902 1578.183 1143.005015 test 7755535
## 2188 1251.902 1578.183 2913.173125 test 7755535
## 2189 1251.902 1578.183 3285.653411 test 7755535
## 2190 1251.902 1578.183 6026.914402 test 7755535
## 2191 1251.902 1578.183 5700.303874 test 7755535
## 2192 1251.902 1578.183 3559.263690 test 7755535
## 2193 1251.902 1578.183 3662.727397 test 7755535
## 2194 1251.902 1578.183 3331.502812 test 7755535
## 2195 1251.902 1578.183 2431.252426 test 7755535
## 2196 1251.902 1578.183 2792.549570 test 7755535
## 2197 1251.902 1578.183 3033.354650 test 7755535
## 2198 1251.902 1578.183 2941.719365 test 7755535
## 2199 1251.902 1578.183 3629.669784 test 7755535
## 2200 1251.902 1578.183 2188.108691 test 7755535
## 2201 1251.902 1578.183 1547.092949 test 7755535
## 2202 1251.902 1578.183 2237.591923 test 7755535
## 2203 1251.902 1578.183 1580.761636 test 7755535
## 2204 1251.902 1578.183 906.779500 test 7755535
## 2205 1251.902 1578.183 618.267342 test 7755535
## 2206 1251.902 1578.183 1760.678598 test 7755535
## 2207 1251.902 1578.183 2648.960874 test 7755535
## 2208 1251.902 1578.183 3655.296252 test 7755535
## 2209 1251.902 1578.183 3501.952347 test 7755535
## 2210 1251.902 1578.183 3533.918844 test 7755535
## 2211 1251.902 1578.183 1759.879203 test 7755535
## 2212 1251.902 1578.183 1353.166535 test 7755535
## 2213 1251.902 1578.183 936.774953 test 7755535
## 2214 1251.902 1578.183 1508.771994 test 7755535
## 2215 1251.902 1578.183 1481.064950 test 7755535
## 2216 1251.902 1578.183 2036.207613 test 7755535
## 2217 1251.902 1578.183 2089.780442 test 7755535
## 2218 1251.902 1578.183 1768.304411 test 7755535
## 2219 1251.902 1578.183 1165.969670 test 7755535
## 2220 1251.902 1578.183 643.610714 test 7755535
## 2221 1251.902 1578.183 732.946848 test 7755535
## 2222 1251.902 1578.183 4433.091141 test 7755535
## 2223 1251.902 1578.183 3035.976540 test 7755535
## 2224 1251.902 1578.183 3416.508095 test 7755535
## 2225 1251.902 1578.183 2462.771986 test 7755535
## 2226 1251.902 1578.183 4095.524609 test 7755535
## 2227 1251.902 1578.183 2286.886624 test 7755535
## 2228 1251.902 1578.183 1799.112963 test 7755535
## 2229 1251.902 1578.183 1350.409260 test 7755535
## 2230 1251.902 1578.183 1766.914929 test 7755535
## 2231 1251.902 1578.183 4027.644118 test 7755535
## 2232 1251.902 1578.183 4022.596575 test 7755535
## 2233 1251.902 1578.183 3099.788081 test 7755535
## 2234 1251.902 1578.183 3940.943423 test 7755535
## 2235 1251.902 1578.183 3737.370166 test 7755535
## 2236 1251.902 1578.183 9276.789095 test 7755535
## 2237 1251.902 1578.183 5264.788841 test 7755535
## 2238 1251.902 1578.183 4938.801677 test 7755535
## 2239 1251.902 1578.183 5656.071064 test 7755535
## 2240 1251.902 1578.183 2350.720168 test 7755535
## 2241 1251.902 1578.183 3395.047912 test 7755535
## 2242 1251.902 1578.183 3852.942502 test 7755535
## 2243 1251.902 1578.183 3748.195311 test 7755535
## 2244 1251.902 1578.183 5934.654538 test 7755535
## 2245 1251.902 1578.183 5509.460874 test 7755535
## 2246 1251.902 1578.183 3251.606806 test 7755535
## 2247 1251.902 1578.183 2574.671990 test 7755535
## 2248 1251.902 1578.183 2166.961869 test 7755535
## 2249 1251.902 1578.183 2332.910328 test 7755535
## 2250 1251.902 1578.183 3561.213900 test 7755535
## 2251 1251.902 1578.183 2992.611241 test 7755535
## 2252 1251.902 1578.183 3820.310593 test 7755535
## 2253 1251.902 1578.183 3622.454333 test 7755535
## 2254 1251.902 1578.183 2174.583394 test 7755535
## 2255 1251.902 1578.183 2413.403806 test 7755535
## 2256 1251.902 1578.183 1694.419755 test 7755535
## 2257 1251.902 1578.183 1221.706694 test 7755535
## 2258 1251.902 1578.183 1232.571726 test 7755535
## 2259 1251.902 1578.183 1391.458457 test 7755535
## 2260 1251.902 1578.183 1393.949302 test 7755535
## 2261 1251.902 1578.183 1301.046385 test 7755535
## 2262 1251.902 1578.183 1303.489892 test 7755535
## 2263 1251.902 1578.183 1305.685284 test 7755535
## 2264 1251.902 1578.183 1805.703651 test 7755535
## 2265 1251.902 1578.183 1272.147839 test 7755535
## 2266 1251.902 1578.183 1112.758751 test 7755535
## 2267 1251.902 1578.183 1509.952779 test 7755535
## 2268 1251.902 1578.183 903.387491 test 7755535
## 2269 1251.902 1578.183 748.544664 test 7755535
## 2270 1251.902 1578.183 657.298758 test 7755535
## 2271 1251.902 1578.183 762.196041 test 7755535
## 2272 1251.902 1578.183 1221.002487 test 7755535
## 2273 1251.902 1578.183 707.295055 test 7755535
## 2274 1251.902 1578.183 700.446240 test 7755535
## 2275 1251.902 1578.183 1070.370504 test 7755535
## 2276 1251.902 1578.183 877.599201 test 7755535
## 2277 1251.902 1578.183 991.200768 test 7755535
## 2278 1251.902 1578.183 798.318325 test 7755535
## 2279 1251.902 1578.183 728.299024 test 7755535
## 2280 1251.902 1578.183 634.283620 test 7755535
## 2281 1251.902 1578.183 467.164478 test 7755535
## 2282 1251.902 1578.183 734.548040 test 7755535
## 2283 1251.902 1578.183 570.448156 test 7755535
## 2284 1251.902 1578.183 432.960384 test 7755535
## 2285 1251.902 1578.183 257.339431 test 7755535
## 2286 1251.902 1578.183 327.272115 test 7755535
## 2287 1251.902 1578.183 992.260765 test 7755535
## 2288 1251.902 1578.183 810.966406 test 7755535
## 2289 1251.902 1578.183 841.443777 test 7755535
## 2290 1251.902 1578.183 695.695034 test 7755535
## 2291 1251.902 1578.183 536.254711 test 7755535
## 2292 1251.902 1578.183 802.639404 test 7755535
## 2293 1251.902 1578.183 763.477884 test 7755535
## 2294 1251.902 1578.183 1033.654309 test 7755535
## 2295 1251.902 1578.183 991.810363 test 7755535
## 2296 1251.902 1578.183 855.872513 test 7755535
## 2297 1251.902 1578.183 1373.480692 test 7755535
## 2298 1251.902 1578.183 1209.582051 test 7755535
## 2299 1251.902 1578.183 794.578809 test 7755535
## 2300 1251.902 1578.183 1181.069655 test 7755535
## 2301 1251.902 1578.183 1016.788060 test 7755535
## 2302 1251.902 1578.183 853.605215 test 7755535
## 2303 1251.902 1578.183 1004.871610 test 7755535
## 2304 1251.902 1578.183 796.147470 test 7755535
## 2305 1251.902 1578.183 753.267367 test 7755535
## 2306 1251.902 1578.183 608.233113 test 7755535
## 2307 1251.902 1578.183 835.496779 test 7755535
## 2308 1251.902 1578.183 898.839265 test 7755535
## 2309 1251.902 1578.183 430.603283 test 7755535
## 2310 1251.902 1578.183 479.061076 test 7755535
## 2311 1251.902 1578.183 772.402921 test 7755535
## 2312 1251.902 1578.183 688.061631 test 7755535
## 2313 1251.902 1578.183 1124.569127 test 7755535
## 2314 1251.902 1578.183 1250.897239 test 7755535
## 2315 1251.902 1578.183 771.169777 test 7755535
## 2316 1251.902 1578.183 707.224553 test 7755535
## 2317 1251.902 1578.183 837.681276 test 7755535
## 2318 1251.902 1578.183 897.121808 test 7755535
## 2319 1251.902 1578.183 746.829184 test 7755535
## 2320 1251.902 1578.183 719.958036 test 7755535
## 2321 1251.902 1578.183 727.076516 test 7755535
## 2322 1251.902 1578.183 743.374743 test 7755535
## 2323 1251.902 1578.183 733.192456 test 7755535
## 2324 1251.902 1578.183 937.819528 test 7755535
## 2325 1251.902 1578.183 955.683825 test 7755535
## 2326 1251.902 1578.183 839.336371 test 7755535
## 2327 1251.902 1578.183 730.113790 test 7755535
## 2328 1251.902 1578.183 745.172346 test 7755535
## 2329 1251.902 1578.183 660.829331 test 7755535
## 2330 1251.902 1578.183 410.774946 test 7755535
## 2331 1251.902 1578.183 524.362732 test 7755535
## 2332 1251.902 1578.183 880.769622 test 7755535
## 2333 1251.902 1578.183 606.126025 test 7755535
## 2334 1251.902 1578.183 503.763829 test 7755535
## 2335 1251.902 1578.183 696.511018 test 7755535
## 2336 1251.902 1578.183 648.064054 test 7755535
## 2337 1251.902 1578.183 487.031386 test 7755535
## 2338 1251.902 1578.183 850.407217 test 7755535
## 2339 1251.902 1578.183 625.467566 test 7755535
## 2340 1251.902 1578.183 517.918753 test 7755535
## 2341 1251.902 1578.183 496.291965 test 7755535
## 2342 1251.902 1578.183 747.937715 test 7755535
## 2343 1251.902 1578.183 515.948168 test 7755535
## 2344 1251.902 1578.183 812.469668 test 7755535
## 2345 1251.902 1578.183 680.058050 test 7755535
## 2346 1251.902 1578.183 512.288348 test 7755535
## 2347 1251.902 1578.183 627.471169 test 7755535
## 2348 1251.902 1578.183 614.595598 test 7755535
## 2349 1251.902 1578.183 833.518738 test 7755535
## 2350 1251.902 1578.183 965.924437 test 7755535
## 2351 1251.902 1578.183 809.689948 test 7755535
## 2352 1251.902 1578.183 757.553876 test 7755535
## 2353 1251.902 1578.183 903.292673 test 7755535
## 2354 1251.902 1578.183 1218.152280 test 7755535
## 2355 1251.902 1578.183 939.912263 test 7755535
## 2356 1251.902 1578.183 882.221043 test 7755535
## 2357 1251.902 1578.183 1431.120841 test 7755535
## 2358 1251.902 1578.183 996.597216 test 7755535
## 2359 1251.902 1578.183 1076.537779 test 7755535
## 2360 1251.902 1578.183 1016.807308 test 7755535
## 2361 1251.902 1578.183 703.780071 test 7755535
## 2362 1251.902 1578.183 999.235660 test 7755535
## 2363 1251.902 1578.183 882.159551 test 7755535
## 2364 1251.902 1578.183 788.131380 test 7755535
## 2365 1251.902 1578.183 968.112661 test 7755535
## 2366 1251.902 1578.183 655.140504 test 7755535
## 2367 1251.902 1578.183 734.632064 test 7755535
## 2368 1251.902 1578.183 635.096289 test 7755535
## 2369 1251.902 1578.183 988.077970 test 7755535
## 2370 1251.902 1578.183 636.805485 test 7755535
## 2371 1251.902 1578.183 898.228077 test 7755535
## 2372 1251.902 1578.183 789.668658 test 7755535
## 2373 1251.902 1578.183 662.996315 test 7755535
## 2374 1251.902 1578.183 939.390229 test 7755535
## 2375 1251.902 1578.183 675.510114 test 7755535
## 2376 1251.902 1578.183 708.205110 test 7755535
## 2377 1251.902 1578.183 830.066525 test 7755535
## 2378 1251.902 1578.183 545.903141 test 7755535
## 2379 1251.902 1578.183 805.123872 test 7755535
## 2380 1251.902 1578.183 1353.243186 test 7755535
## 2381 1251.902 1578.183 686.054612 test 7755535
## 2382 1251.902 1578.183 1007.835819 test 7755535
## 2383 1251.902 1578.183 635.055226 test 7755535
## 2384 1251.902 1578.183 706.633870 test 7755535
## 2385 1251.902 1578.183 629.113212 test 7755535
## 2386 1251.902 1578.183 658.516725 test 7755535
## 2387 1251.902 1578.183 739.995572 test 7755535
## 2388 1251.902 1578.183 569.732965 test 7755535
## 2389 1251.902 1578.183 149.283154 test 7755535
## 2390 1251.902 1578.183 11.652811 test 7755535
## 2391 1251.902 1578.183 56.139810 test 7755535
## 2392 1251.902 1578.183 21.698296 test 7755535
## 2393 1251.902 1578.183 18.151730 test 7755535
## 2394 1251.902 1578.183 36.153737 test 7755535
## 2395 1251.902 1578.183 7.386581 test 7755535
## 2396 1251.902 1578.183 58.742468 test 7755535
## 2397 1251.902 1578.183 445.159519 test 7755535
## 2398 1251.902 1578.183 653.647138 test 7755535
## 2399 1251.902 1578.183 300.311031 test 7755535
## 2400 1251.902 1578.183 402.674781 test 7755535
## 2401 1251.902 1578.183 292.213853 test 7755535
## 2402 1251.902 1578.183 517.362513 test 7755535
## 2403 1251.902 1578.183 564.486082 test 7755535
## 2404 1251.902 1578.183 425.551474 test 7755535
## 2405 1251.902 1578.183 89.972812 test 7755535
## 2406 1251.902 1578.183 55.449555 test 7755535
## 2407 1251.902 1578.183 253.792709 test 7755535
## 2408 1251.902 1578.183 132.557396 test 7755535
## 2409 1251.902 1578.183 320.209951 test 7755535
## 2410 1251.902 1578.183 146.865424 test 7755535
## 2411 1251.902 1578.183 343.894687 test 7755535
## 2412 1251.902 1578.183 452.076320 test 7755535
## 2413 1251.902 1578.183 517.760883 test 7755535
## 2414 1251.902 1578.183 577.871705 test 7755535
## 2415 1251.902 1578.183 444.669792 test 7755535
## 2416 1251.902 1578.183 627.412395 test 7755535
## 2417 1251.902 1578.183 579.206929 test 7755535
## 2418 1251.902 1578.183 40.198418 test 7755535
## 2419 1251.902 1578.183 640.882624 test 7755535
## 2420 1251.902 1578.183 808.356082 test 7755535
## 2421 1251.902 1578.183 457.035292 test 7755535
## 2422 1251.902 1578.183 446.216566 test 7755535
## 2423 1251.902 1578.183 583.647779 test 7755535
## 2424 1251.902 1578.183 901.001895 test 7755535
## 2425 1251.902 1578.183 646.857449 test 7755535
## 2426 1251.902 1578.183 922.246605 test 7755535
## 2427 1251.902 1578.183 908.405838 test 7755535
## 2428 1251.902 1578.183 767.325897 test 7755535
## 2429 1251.902 1578.183 740.207895 test 7755535
## 2430 1251.902 1578.183 673.031099 test 7755535
## 2431 1251.902 1578.183 803.374656 test 7755535
## 2432 1251.902 1578.183 582.319174 test 7755535
## 2433 1251.902 1578.183 755.955343 test 7755535
## 2434 1251.902 1578.183 576.010168 test 7755535
## 2435 1251.902 1578.183 706.562227 test 7755535
## 2436 1251.902 1578.183 997.757208 test 7755535
## 2437 1251.902 1578.183 542.939905 test 7755535
## 2438 1251.902 1578.183 686.722364 test 7755535
## 2439 1251.902 1578.183 1016.296108 test 7755535
## 2440 1251.902 1578.183 1105.786890 test 7755535
## 2441 1251.902 1578.183 1271.692964 test 7755535
## 2442 1251.902 1578.183 1539.511875 test 7755535
## 2443 1251.902 1578.183 927.075979 test 7755535
## 2444 1251.902 1578.183 890.057879 test 7755535
## 2445 1251.902 1578.183 1028.623947 test 7755535
## 2446 1251.902 1578.183 883.181712 test 7755535
## 2447 1251.902 1578.183 762.295293 test 7755535
## 2448 1251.902 1578.183 694.273202 test 7755535
## 2449 1251.902 1578.183 473.605944 test 7755535
## 2450 1251.902 1578.183 722.285418 test 7755535
## 2451 1251.902 1578.183 480.905605 test 7755535
## 2452 1251.902 1578.183 593.506434 test 7755535
## 2453 1251.902 1578.183 759.006182 test 7755535
## 2454 1251.902 1578.183 815.735503 test 7755535
## 2455 1251.902 1578.183 679.458874 test 7755535
## 2456 1251.902 1578.183 909.092173 test 7755535
## 2457 1251.902 1578.183 695.697840 test 7755535
## 2458 1251.902 1578.183 428.957950 test 7755535
## 2459 1251.902 1578.183 847.766839 test 7755535
## 2460 1251.902 1578.183 613.550546 test 7755535
## 2461 1251.902 1578.183 698.461834 test 7755535
## 2462 1251.902 1578.183 617.782000 test 7755535
## 2463 1251.902 1578.183 456.541407 test 7755535
## 2464 1251.902 1578.183 354.286232 test 7755535
## 2465 1251.902 1578.183 376.910544 test 7755535
## 2466 1251.902 1578.183 516.871483 test 7755535
## 2467 1251.902 1578.183 586.370507 test 7755535
## 2468 1251.902 1578.183 397.970395 test 7755535
## 2469 1251.902 1578.183 377.399255 test 7755535
## 2470 1251.902 1578.183 670.107253 test 7755535
## 2471 1251.902 1578.183 469.745248 test 7755535
## 2472 1251.902 1578.183 383.134009 test 7755535
## 2473 1251.902 1578.183 522.053795 test 7755535
## 2474 1251.902 1578.183 398.809929 test 7755535
## 2475 1251.902 1578.183 370.947860 test 7755535
## 2476 1251.902 1578.183 312.884823 test 7755535
## 2477 1251.902 1578.183 388.538874 test 7755535
## 2478 1251.902 1578.183 593.209686 test 7755535
## 2479 1251.902 1578.183 812.988837 test 7755535
## 2480 1251.902 1578.183 959.710051 test 7755535
## 2481 1251.902 1578.183 771.056221 test 7755535
## 2482 1251.902 1578.183 746.635652 test 7755535
## 2483 1251.902 1578.183 969.032676 test 7755535
## 2484 1251.902 1578.183 1011.540893 test 7755535
## 2485 1251.902 1578.183 754.407781 test 7755535
## 2486 1251.902 1578.183 913.677366 test 7755535
## 2487 1251.902 1578.183 791.240244 test 7755535
## 2488 1251.902 1578.183 1021.627742 test 7755535
## 2489 1251.902 1578.183 883.708915 test 7755535
## 2490 1251.902 1578.183 727.664969 test 7755535
## 2491 1251.902 1578.183 1254.748972 test 7755535
## 2492 1251.902 1578.183 935.579088 test 7755535
## 2493 1251.902 1578.183 1241.770667 test 7755535
## 2494 1251.902 1578.183 1175.433976 test 7755535
## 2495 1251.902 1578.183 1227.182750 test 7755535
## 2496 1251.902 1578.183 846.242866 test 7755535
## 2497 1251.902 1578.183 825.900547 test 7755535
## 2498 1251.902 1578.183 940.995823 test 7755535
## 2499 1251.902 1578.183 704.640109 test 7755535
## 2500 1251.902 1578.183 746.205362 test 7755535
## 2501 1251.902 1578.183 759.824309 test 7755535
## 2502 1251.902 1578.183 911.358702 test 7755535
## 2503 1251.902 1578.183 852.709900 test 7755535
## 2504 1251.902 1578.183 963.176594 test 7755535
## 2505 1251.902 1578.183 915.028464 test 7755535
## 2506 1251.902 1578.183 1096.773530 test 7755535
## 2507 1251.902 1578.183 952.968545 test 7755535
## 2508 1251.902 1578.183 646.618259 test 7755535
## 2509 1251.902 1578.183 896.737744 test 7755535
## 2510 1251.902 1578.183 616.787153 test 7755535
## 2511 1251.902 1578.183 848.367757 test 7755535
## 2512 1251.902 1578.183 555.791501 test 7755535
## 2513 1251.902 1578.183 820.980456 test 7755535
## 2514 1251.902 1578.183 716.656813 test 7755535
## 2515 1251.902 1578.183 739.675418 test 7755535
## 2516 1251.902 1578.183 660.967512 test 7755535
## 2517 1251.902 1578.183 771.119904 test 7755535
## 2518 1251.902 1578.183 845.737515 test 7755535
## 2519 1251.902 1578.183 910.676809 test 7755535
## 2520 1251.902 1578.183 947.262480 test 7755535
## 2521 1251.902 1578.183 1149.281716 test 7755535
## 2522 1251.902 1578.183 1220.027829 test 7755535
## 2523 1251.902 1578.183 1275.659134 test 7755535
## 2524 1251.902 1578.183 832.629448 test 7755535
## 2525 1251.902 1578.183 1466.779490 test 7755535
## 2526 1251.902 1578.183 986.147325 test 7755535
## 2527 1251.902 1578.183 919.996208 test 7755535
## 2528 1251.902 1578.183 903.317937 test 7755535
## 2529 1251.902 1578.183 909.759358 test 7755535
## 2530 1251.902 1578.183 681.738437 test 7755535
## 2531 1251.902 1578.183 920.441935 test 7755535
## 2532 1251.902 1578.183 1105.492441 test 7755535
## 2533 1251.902 1578.183 1063.969979 test 7755535
## 2534 1251.902 1578.183 828.177756 test 7755535
## 2535 1251.902 1578.183 1618.146500 test 7755535
## 2536 1251.902 1578.183 1383.636149 test 7755535
## 2537 1251.902 1578.183 1043.499362 test 7755535
## 2538 1251.902 1578.183 1699.875174 test 7755535
## 2539 1251.902 1578.183 1435.591720 test 7755535
## 2540 1251.902 1578.183 969.581897 test 7755535
## 2541 1251.902 1578.183 1159.968656 test 7755535
## 2542 1251.902 1578.183 1386.024607 test 7755535
## 2543 1251.902 1578.183 1155.940752 test 7755535
## 2544 1251.902 1578.183 1595.930384 test 7755535
## 2545 1251.902 1578.183 1113.693814 test 7755535
## 2546 1251.902 1578.183 1398.885111 test 7755535
## 2547 1251.902 1578.183 981.582443 test 7755535
## 2548 1251.902 1578.183 1051.806455 test 7755535
## 2549 1251.902 1578.183 1016.575290 test 7755535
## 2550 1251.902 1578.183 1125.963655 test 7755535
## 2551 1251.902 1578.183 1536.400811 test 7755535
## 2552 1251.902 1578.183 1260.420500 test 7755535
## 2553 1251.902 1578.183 1432.857717 test 7755535
## 2554 1251.902 1578.183 1323.230434 test 7755535
## 2555 1251.902 1578.183 1268.446819 test 7755535
## 2556 1251.902 1578.183 1241.341019 test 7755535
## 2557 1251.902 1578.183 1116.766677 test 7755535
## 2558 1251.902 1578.183 1183.922607 test 7755535
## 2559 1251.902 1578.183 1177.764713 test 7755535
## 2560 1251.902 1578.183 1175.400855 test 7755535
## 2561 1251.902 1578.183 1165.965324 test 7755535
## 2562 1251.902 1578.183 1165.997986 test 7755535
## 2563 1251.902 1578.183 1161.660586 test 7755535
## 2564 1251.902 1578.183 1163.969265 test 7755535
## 2565 1251.902 1578.183 1226.873581 test 7755535
## 2566 1251.902 1578.183 1233.646093 test 7755535
## 2567 1251.902 1578.183 1231.717140 test 7755535
## 2568 1251.902 1578.183 1233.565332 test 7755535
## 2569 1251.902 1578.183 1168.289461 test 7755535
## 2570 1251.902 1578.183 1564.485141 test 7755535
## 2571 1251.902 1578.183 1159.073894 test 7755535
## 2572 1251.902 1578.183 1576.153264 test 7755535
## 2573 1251.902 1578.183 1555.352923 test 7755535
## 2574 1251.902 1578.183 1558.790194 test 7755535
## 2575 1251.902 1578.183 1550.449888 test 7755535
## 2576 1251.902 1578.183 2660.269945 test 7755535
## 2577 1251.902 1578.183 3826.719628 test 7755535
## 2578 1251.902 1578.183 3866.205483 test 7755535
## 2579 1251.902 1578.183 3587.397564 test 7755535
## 2580 1251.902 1578.183 2867.979800 test 7755535
## 2581 1251.902 1578.183 4360.852009 test 7755535
## 2582 1251.902 1578.183 3378.219117 test 7755535
## 2583 1251.902 1578.183 2547.591555 test 7755535
## 2584 1251.902 1578.183 1243.131378 test 7755535
## 2585 1251.902 1578.183 1106.942727 test 7755535
## 2586 1251.902 1578.183 1459.856415 test 7755535
## 2587 1251.902 1578.183 1368.600251 test 7755535
## 2588 1251.902 1578.183 1234.282236 test 7755535
## 2589 1251.902 1578.183 3845.071942 test 7755535
## 2590 1251.902 1578.183 2339.254913 test 7755535
## 2591 1251.902 1578.183 733.098732 test 7755535
## 2592 1251.902 1578.183 2781.696445 test 7755535
## 2593 1251.902 1578.183 1607.478945 test 7755535
## 2594 1251.902 1578.183 1646.891190 test 7755535
## 2595 1251.902 1578.183 2124.238915 test 7755535
## 2596 1251.902 1578.183 1903.794348 test 7755535
## 2597 1251.902 1578.183 6100.411080 test 7755535
## 2598 1251.902 1578.183 3933.590142 test 7755535
## 2599 1251.902 1578.183 4694.989766 test 7755535
## 2600 1251.902 1578.183 3282.708190 test 7755535
## 2601 1251.902 1578.183 2911.922259 test 7755535
## 2602 1251.902 1578.183 2297.846661 test 7755535
## 2603 1251.902 1578.183 1914.874374 test 7755535
## 2604 1251.902 1578.183 2126.262000 test 7755535
## 2605 1251.902 1578.183 2009.836530 test 7755535
## 2606 1251.902 1578.183 1907.132586 test 7755535
## 2607 1251.902 1578.183 1143.163644 test 7755535
## 2608 1251.902 1578.183 1117.087600 test 7755535
## 2609 1251.902 1578.183 1466.691914 test 7755535
## 2610 1251.902 1578.183 1061.185273 test 7755535
## 2611 1251.902 1578.183 1528.271795 test 7755535
## 2612 1251.902 1578.183 1595.250163 test 7755535
## 2613 1251.902 1578.183 1366.033178 test 7755535
## 2614 1251.902 1578.183 2290.871741 test 7755535
## 2615 1251.902 1578.183 2047.995764 test 7755535
## 2616 1251.902 1578.183 1648.211942 test 7755535
## 2617 1251.902 1578.183 794.645203 test 7755535
## 2618 1251.902 1578.183 1031.847109 test 7755535
## 2619 1251.902 1578.183 1564.041906 test 7755535
## 2620 1251.902 1578.183 2232.391951 test 7755535
## 2621 1251.902 1578.183 1516.775506 test 7755535
## 2622 1251.902 1578.183 1730.787637 test 7755535
## 2623 1251.902 1578.183 2221.725085 test 7755535
## 2624 1251.902 1578.183 2061.441171 test 7755535
## 2625 1251.902 1578.183 1160.047361 test 7755535
## 2626 1251.902 1578.183 804.502160 test 7755535
## 2627 1251.902 1578.183 928.646768 test 7755535
## 2628 1251.902 1578.183 1536.594727 test 7755535
## 2629 1251.902 1578.183 3673.625746 test 7755535
## 2630 1251.902 1578.183 6554.487758 test 7755535
## 2631 1251.902 1578.183 10618.629790 test 7755535
## 2632 1251.902 1578.183 3745.895494 test 7755535
## 2633 1251.902 1578.183 2141.943956 test 7755535
## 2634 1251.902 1578.183 7464.752653 test 7755535
## 2635 1251.902 1578.183 5158.389122 test 7755535
## 2636 1251.902 1578.183 6276.551715 test 7755535
## 2637 1251.902 1578.183 7708.995621 test 7755535
## 2638 1251.902 1578.183 4118.218589 test 7755535
## 2639 1251.902 1578.183 4140.035723 test 7755535
## 2640 1251.902 1578.183 3701.206007 test 7755535
## 2641 1251.902 1578.183 3433.434231 test 7755535
## 2642 1251.902 1578.183 2241.009611 test 7755535
## 2643 1251.902 1578.183 3137.568566 test 7755535
## 2644 1251.902 1578.183 2403.240008 test 7755535
## 2645 1251.902 1578.183 2584.347406 test 7755535
## 2646 1251.902 1578.183 3066.801401 test 7755535
## 2647 1251.902 1578.183 3407.716521 test 7755535
## 2648 1251.902 1578.183 2506.728585 test 7755535
## 2649 1251.902 1578.183 2692.953466 test 7755535
## 2650 1251.902 1578.183 2164.374216 test 7755535
## 2651 1251.902 1578.183 1471.610452 test 7755535
## 2652 1251.902 1578.183 1426.755080 test 7755535
## 2653 1251.902 1578.183 1289.293786 test 7755535
## 2654 1251.902 1578.183 1231.380255 test 7755535
## 2655 1251.902 1578.183 1306.437140 test 7755535
## 2656 1251.902 1578.183 1839.804768 test 7755535
## 2657 1251.902 1578.183 1357.420612 test 7755535
## 2658 1251.902 1578.183 2273.069728 test 7755535
## 2659 1251.902 1578.183 2110.309951 test 7755535
## 2660 1251.902 1578.183 1425.269546 test 7755535
## 2661 1251.902 1578.183 1144.936189 test 7755535
## 2662 1251.902 1578.183 1069.975206 test 7755535
## 2663 1251.902 1578.183 842.330777 test 7755535
## 2664 1251.902 1578.183 999.334655 test 7755535
## 2665 1251.902 1578.183 934.164892 test 7755535
## 2666 1251.902 1578.183 927.284027 test 7755535
## 2667 1251.902 1578.183 785.231288 test 7755535
## 2668 1251.902 1578.183 1226.283422 test 7755535
## 2669 1251.902 1578.183 1300.778919 test 7755535
## 2670 1251.902 1578.183 974.264419 test 7755535
## 2671 1251.902 1578.183 1388.383016 test 7755535
## 2672 1251.902 1578.183 738.347075 test 7755535
## 2673 1251.902 1578.183 505.221021 test 7755535
## 2674 1251.902 1578.183 929.942320 test 7755535
## 2675 1251.902 1578.183 481.702395 test 7755535
## 2676 1251.902 1578.183 546.250712 test 7755535
## 2677 1251.902 1578.183 633.877295 test 7755535
## 2678 1251.902 1578.183 747.671840 test 7755535
## 2679 1251.902 1578.183 947.168879 test 7755535
## 2680 1251.902 1578.183 802.804597 test 7755535
## 2681 1251.902 1578.183 706.592267 test 7755535
## 2682 1251.902 1578.183 787.910422 test 7755535
## 2683 1251.902 1578.183 816.265271 test 7755535
## 2684 1251.902 1578.183 691.384173 test 7755535
## 2685 1251.902 1578.183 1088.624750 test 7755535
## 2686 1251.902 1578.183 836.734589 test 7755535
## 2687 1251.902 1578.183 822.307773 test 7755535
## 2688 1251.902 1578.183 740.647192 test 7755535
## 2689 1251.902 1578.183 845.070229 test 7755535
## 2690 1251.902 1578.183 1264.708381 test 7755535
## 2691 1251.902 1578.183 1109.941282 test 7755535
## 2692 1251.902 1578.183 791.764355 test 7755535
## 2693 1251.902 1578.183 1028.649943 test 7755535
## 2694 1251.902 1578.183 595.583807 test 7755535
## 2695 1251.902 1578.183 478.620606 test 7755535
## 2696 1251.902 1578.183 555.145648 test 7755535
## 2697 1251.902 1578.183 1007.183541 test 7755535
## 2698 1251.902 1578.183 890.212700 test 7755535
## 2699 1251.902 1578.183 775.397590 test 7755535
## 2700 1251.902 1578.183 772.085276 test 7755535
## 2701 1251.902 1578.183 538.907379 test 7755535
## 2702 1251.902 1578.183 481.990640 test 7755535
## 2703 1251.902 1578.183 334.284339 test 7755535
## 2704 1251.902 1578.183 765.905731 test 7755535
## 2705 1251.902 1578.183 722.184780 test 7755535
## 2706 1251.902 1578.183 781.654838 test 7755535
## 2707 1251.902 1578.183 1162.460560 test 7755535
## 2708 1251.902 1578.183 846.030211 test 7755535
## 2709 1251.902 1578.183 756.230787 test 7755535
## 2710 1251.902 1578.183 749.612302 test 7755535
## 2711 1251.902 1578.183 747.478861 test 7755535
## 2712 1251.902 1578.183 732.155969 test 7755535
## 2713 1251.902 1578.183 736.257933 test 7755535
## 2714 1251.902 1578.183 930.824976 test 7755535
## 2715 1251.902 1578.183 962.123294 test 7755535
## 2716 1251.902 1578.183 869.539048 test 7755535
## 2717 1251.902 1578.183 710.445928 test 7755535
## 2718 1251.902 1578.183 636.472659 test 7755535
## 2719 1251.902 1578.183 592.213531 test 7755535
## 2720 1251.902 1578.183 539.921273 test 7755535
## 2721 1251.902 1578.183 738.712186 test 7755535
## 2722 1251.902 1578.183 685.619661 test 7755535
## 2723 1251.902 1578.183 537.082660 test 7755535
## 2724 1251.902 1578.183 716.408498 test 7755535
## 2725 1251.902 1578.183 571.820579 test 7755535
## 2726 1251.902 1578.183 554.364800 test 7755535
## 2727 1251.902 1578.183 473.553771 test 7755535
## 2728 1251.902 1578.183 527.385535 test 7755535
## 2729 1251.902 1578.183 537.527102 test 7755535
## 2730 1251.902 1578.183 578.664729 test 7755535
## 2731 1251.902 1578.183 507.716576 test 7755535
## 2732 1251.902 1578.183 937.376968 test 7755535
## 2733 1251.902 1578.183 484.729546 test 7755535
## 2734 1251.902 1578.183 658.969284 test 7755535
## 2735 1251.902 1578.183 856.911702 test 7755535
## 2736 1251.902 1578.183 597.393178 test 7755535
## 2737 1251.902 1578.183 588.478638 test 7755535
## 2738 1251.902 1578.183 575.739050 test 7755535
## 2739 1251.902 1578.183 346.055083 test 7755535
## 2740 1251.902 1578.183 417.034205 test 7755535
## 2741 1251.902 1578.183 508.727212 test 7755535
## 2742 1251.902 1578.183 835.245065 test 7755535
## 2743 1251.902 1578.183 1126.643690 test 7755535
## 2744 1251.902 1578.183 1086.367744 test 7755535
## 2745 1251.902 1578.183 1224.773447 test 7755535
## 2746 1251.902 1578.183 885.051887 test 7755535
## 2747 1251.902 1578.183 877.510530 test 7755535
## 2748 1251.902 1578.183 1068.542732 test 7755535
## 2749 1251.902 1578.183 885.784219 test 7755535
## 2750 1251.902 1578.183 1548.469372 test 7755535
## 2751 1251.902 1578.183 918.529909 test 7755535
## 2752 1251.902 1578.183 720.509306 test 7755535
## 2753 1251.902 1578.183 947.082427 test 7755535
## 2754 1251.902 1578.183 681.264528 test 7755535
## 2755 1251.902 1578.183 320.140432 test 7755535
## 2756 1251.902 1578.183 325.386971 test 7755535
## 2757 1251.902 1578.183 217.666327 test 7755535
## 2758 1251.902 1578.183 488.492182 test 7755535
## 2759 1251.902 1578.183 846.637139 test 7755535
## 2760 1251.902 1578.183 794.474034 test 7755535
## 2761 1251.902 1578.183 356.748240 test 7755535
## 2762 1251.902 1578.183 358.293950 test 7755535
## 2763 1251.902 1578.183 428.633473 test 7755535
## 2764 1251.902 1578.183 320.983868 test 7755535
## 2765 1251.902 1578.183 871.326013 test 7755535
## 2766 1251.902 1578.183 931.570835 test 7755535
## 2767 1251.902 1578.183 910.773938 test 7755535
## 2768 1251.902 1578.183 594.397339 test 7755535
## 2769 1251.902 1578.183 752.598342 test 7755535
## 2770 1251.902 1578.183 246.792434 test 7755535
## 2771 1251.902 1578.183 266.311666 test 7755535
## 2772 1251.902 1578.183 341.982778 test 7755535
## 2773 1251.902 1578.183 208.357089 test 7755535
## 2774 1251.902 1578.183 349.778592 test 7755535
## 2775 1251.902 1578.183 627.206515 test 7755535
## 2776 1251.902 1578.183 539.243649 test 7755535
## 2777 1251.902 1578.183 85.638645 test 7755535
## 2778 1251.902 1578.183 303.873994 test 7755535
## 2779 1251.902 1578.183 564.509273 test 7755535
## 2780 1251.902 1578.183 393.331279 test 7755535
## 2781 1251.902 1578.183 386.644705 test 7755535
## 2782 1251.902 1578.183 380.989854 test 7755535
## 2783 1251.902 1578.183 355.501407 test 7755535
## 2784 1251.902 1578.183 429.485846 test 7755535
## 2785 1251.902 1578.183 454.154716 test 7755535
## 2786 1251.902 1578.183 795.141291 test 7755535
## 2787 1251.902 1578.183 539.880668 test 7755535
## 2788 1251.902 1578.183 478.813718 test 7755535
## 2789 1251.902 1578.183 360.886881 test 7755535
## 2790 1251.902 1578.183 346.575760 test 7755535
## 2791 1251.902 1578.183 397.485242 test 7755535
## 2792 1251.902 1578.183 577.937908 test 7755535
## 2793 1251.902 1578.183 317.854165 test 7755535
## 2794 1251.902 1578.183 55.355739 test 7755535
## 2795 1251.902 1578.183 28.344715 test 7755535
## 2796 1251.902 1578.183 81.115623 test 7755535
## 2797 1251.902 1578.183 218.563669 test 7755535
## 2798 1251.902 1578.183 419.340787 test 7755535
## 2799 1251.902 1578.183 426.183000 test 7755535
## 2800 1251.902 1578.183 715.013352 test 7755535
## 2801 1251.902 1578.183 545.027777 test 7755535
## 2802 1251.902 1578.183 614.095292 test 7755535
## 2803 1251.902 1578.183 597.410603 test 7755535
## 2804 1251.902 1578.183 828.949022 test 7755535
## 2805 1251.902 1578.183 1195.754185 test 7755535
## 2806 1251.902 1578.183 364.302288 test 7755535
## 2807 1251.902 1578.183 389.699598 test 7755535
## 2808 1251.902 1578.183 735.142237 test 7755535
## 2809 1251.902 1578.183 779.425066 test 7755535
## 2810 1251.902 1578.183 841.620982 test 7755535
## 2811 1251.902 1578.183 723.089060 test 7755535
## 2812 1251.902 1578.183 422.172139 test 7755535
## 2813 1251.902 1578.183 661.457723 test 7755535
## 2814 1251.902 1578.183 763.340842 test 7755535
## 2815 1251.902 1578.183 441.778550 test 7755535
## 2816 1251.902 1578.183 488.858980 test 7755535
## 2817 1251.902 1578.183 969.972848 test 7755535
## 2818 1251.902 1578.183 711.021247 test 7755535
## 2819 1251.902 1578.183 635.940744 test 7755535
## 2820 1251.902 1578.183 693.259978 test 7755535
## 2821 1251.902 1578.183 791.885799 test 7755535
## 2822 1251.902 1578.183 962.915317 test 7755535
## 2823 1251.902 1578.183 726.558519 test 7755535
## 2824 1251.902 1578.183 663.034075 test 7755535
## 2825 1251.902 1578.183 608.344035 test 7755535
## 2826 1251.902 1578.183 1923.300494 test 7755535
## 2827 1251.902 1578.183 496.166860 test 7755535
## 2828 1251.902 1578.183 525.848348 test 7755535
## 2829 1251.902 1578.183 585.853322 test 7755535
## 2830 1251.902 1578.183 548.938161 test 7755535
## 2831 1251.902 1578.183 969.390655 test 7755535
## 2832 1251.902 1578.183 606.711612 test 7755535
## 2833 1251.902 1578.183 681.065584 test 7755535
## 2834 1251.902 1578.183 589.318702 test 7755535
## 2835 1251.902 1578.183 300.369085 test 7755535
## 2836 1251.902 1578.183 222.487070 test 7755535
## 2837 1251.902 1578.183 840.069696 test 7755535
## 2838 1251.902 1578.183 429.566441 test 7755535
## 2839 1251.902 1578.183 843.200941 test 7755535
## 2840 1251.902 1578.183 564.421886 test 7755535
## 2841 1251.902 1578.183 682.980416 test 7755535
## 2842 1251.902 1578.183 498.830866 test 7755535
## 2843 1251.902 1578.183 562.204205 test 7755535
## 2844 1251.902 1578.183 603.630444 test 7755535
## 2845 1251.902 1578.183 1150.530010 test 7755535
## 2846 1251.902 1578.183 525.015570 test 7755535
## 2847 1251.902 1578.183 463.931928 test 7755535
## 2848 1251.902 1578.183 708.221234 test 7755535
## 2849 1251.902 1578.183 464.555236 test 7755535
## 2850 1251.902 1578.183 412.080149 test 7755535
## 2851 1251.902 1578.183 320.836076 test 7755535
## 2852 1251.902 1578.183 498.778923 test 7755535
## 2853 1251.902 1578.183 401.937585 test 7755535
## 2854 1251.902 1578.183 415.936953 test 7755535
## 2855 1251.902 1578.183 507.782131 test 7755535
## 2856 1251.902 1578.183 547.205595 test 7755535
## 2857 1251.902 1578.183 402.643155 test 7755535
## 2858 1251.902 1578.183 483.485244 test 7755535
## 2859 1251.902 1578.183 448.050555 test 7755535
## 2860 1251.902 1578.183 453.263455 test 7755535
## 2861 1251.902 1578.183 401.694596 test 7755535
## 2862 1251.902 1578.183 531.917769 test 7755535
## 2863 1251.902 1578.183 367.420590 test 7755535
## 2864 1251.902 1578.183 705.956809 test 7755535
## 2865 1251.902 1578.183 552.492777 test 7755535
## 2866 1251.902 1578.183 750.865833 test 7755535
## 2867 1251.902 1578.183 669.285201 test 7755535
## 2868 1251.902 1578.183 823.549025 test 7755535
## 2869 1251.902 1578.183 845.291301 test 7755535
## 2870 1251.902 1578.183 921.082486 test 7755535
## 2871 1251.902 1578.183 748.619109 test 7755535
## 2872 1251.902 1578.183 1074.220335 test 7755535
## 2873 1251.902 1578.183 988.584892 test 7755535
## 2874 1251.902 1578.183 923.066061 test 7755535
## 2875 1251.902 1578.183 1014.428457 test 7755535
## 2876 1251.902 1578.183 1497.196400 test 7755535
## 2877 1251.902 1578.183 1356.822063 test 7755535
## 2878 1251.902 1578.183 1067.119430 test 7755535
## 2879 1251.902 1578.183 1268.203617 test 7755535
## 2880 1251.902 1578.183 914.985912 test 7755535
## 2881 1251.902 1578.183 901.550783 test 7755535
## 2882 1251.902 1578.183 791.416751 test 7755535
## 2883 1251.902 1578.183 787.553155 test 7755535
## 2884 1251.902 1578.183 792.796256 test 7755535
## 2885 1251.902 1578.183 579.653071 test 7755535
## 2886 1251.902 1578.183 727.808541 test 7755535
## 2887 1251.902 1578.183 745.793080 test 7755535
## 2888 1251.902 1578.183 650.054063 test 7755535
## 2889 1251.902 1578.183 896.650597 test 7755535
## 2890 1251.902 1578.183 1283.520951 test 7755535
## 2891 1251.902 1578.183 916.952207 test 7755535
## 2892 1251.902 1578.183 877.127340 test 7755535
## 2893 1251.902 1578.183 1004.513655 test 7755535
## 2894 1251.902 1578.183 1067.309435 test 7755535
## 2895 1251.902 1578.183 821.460963 test 7755535
## 2896 1251.902 1578.183 825.248651 test 7755535
## 2897 1251.902 1578.183 767.491702 test 7755535
## 2898 1251.902 1578.183 500.269457 test 7755535
## 2899 1251.902 1578.183 437.075412 test 7755535
## 2900 1251.902 1578.183 1103.417495 test 7755535
## 2901 1251.902 1578.183 718.412199 test 7755535
## 2902 1251.902 1578.183 806.340141 test 7755535
## 2903 1251.902 1578.183 1035.651843 test 7755535
## 2904 1251.902 1578.183 799.143234 test 7755535
## 2905 1251.902 1578.183 719.535153 test 7755535
## 2906 1251.902 1578.183 747.655496 test 7755535
## 2907 1251.902 1578.183 886.271894 test 7755535
## 2908 1251.902 1578.183 799.055308 test 7755535
## 2909 1251.902 1578.183 556.260966 test 7755535
## 2910 1251.902 1578.183 791.374338 test 7755535
## 2911 1251.902 1578.183 826.959018 test 7755535
## 2912 1251.902 1578.183 1070.001032 test 7755535
## 2913 1251.902 1578.183 1733.167296 test 7755535
## 2914 1251.902 1578.183 700.471978 test 7755535
## 2915 1251.902 1578.183 630.122255 test 7755535
## 2916 1251.902 1578.183 576.415068 test 7755535
## 2917 1251.902 1578.183 824.470049 test 7755535
## 2918 1251.902 1578.183 1064.796219 test 7755535
## 2919 1251.902 1578.183 324.210767 test 7755535
## 2920 1251.902 1578.183 526.362342 test 7755535
## 2921 1251.902 1578.183 659.555269 test 7755535
## 2922 1251.902 1578.183 670.028232 test 7755535
## 2923 1251.902 1578.183 691.721754 test 7755535
## 2924 1251.902 1578.183 670.176971 test 7755535
## 2925 1251.902 1578.183 723.816105 test 7755535
## 2926 1251.902 1578.183 937.152262 test 7755535
## 2927 1251.902 1578.183 656.343927 test 7755535
## 2928 1251.902 1578.183 1080.263169 test 7755535
## 2929 1251.902 1578.183 1216.498439 test 7755535
## 2930 1251.902 1578.183 1137.817448 test 7755535
## 2931 1251.902 1578.183 1124.572946 test 7755535
## 2932 1251.902 1578.183 1131.868518 test 7755535
## 2933 1251.902 1578.183 1120.007681 test 7755535
## 2934 1251.902 1578.183 1459.851871 test 7755535
## 2935 1251.902 1578.183 1102.649687 test 7755535
## 2936 1251.902 1578.183 1053.942045 test 7755535
## 2937 1251.902 1578.183 1147.698696 test 7755535
## 2938 1251.902 1578.183 1109.360022 test 7755535
## 2939 1251.902 1578.183 1110.197247 test 7755535
## 2940 1251.902 1578.183 1087.336833 test 7755535
## 2941 1251.902 1578.183 1614.504843 test 7755535
## 2942 1251.902 1578.183 1108.997935 test 7755535
## 2943 1251.902 1578.183 1097.437955 test 7755535
## 2944 1251.902 1578.183 1234.213307 test 7755535
## 2945 1251.902 1578.183 1195.142078 test 7755535
## 2946 1251.902 1578.183 1183.357849 test 7755535
## 2947 1251.902 1578.183 1191.654339 test 7755535
## 2948 1251.902 1578.183 1183.889056 test 7755535
## 2949 1251.902 1578.183 1173.467738 test 7755535
## 2950 1251.902 1578.183 1164.651711 test 7755535
## 2951 1251.902 1578.183 1169.598990 test 7755535
## 2952 1251.902 1578.183 1170.062665 test 7755535
## 2953 1251.902 1578.183 1166.838927 test 7755535
## 2954 1251.902 1578.183 1228.448054 test 7755535
## 2955 1251.902 1578.183 1226.499225 test 7755535
## 2956 1251.902 1578.183 1226.184487 test 7755535
## 2957 1251.902 1578.183 1227.781684 test 7755535
## 2958 1251.902 1578.183 1165.281069 test 7755535
## 2959 1251.902 1578.183 1190.674957 test 7755535
## 2960 1251.902 1578.183 1190.900440 test 7755535
## 2961 1251.902 1578.183 1192.687370 test 7755535
## 2962 1251.902 1578.183 1186.891831 test 7755535
## 2963 1251.902 1578.183 1177.421045 test 7755535
## 2964 1251.902 1578.183 1186.713221 test 7755535
## 2965 1251.902 1578.183 1564.755433 test 7755535
## 2966 1251.902 1578.183 1546.255178 test 7755535
## 2967 1251.902 1578.183 1890.311268 test 7755535
## 2968 1251.902 1578.183 2115.733738 test 7755535
## 2969 1251.902 1578.183 2762.503850 test 7755535
## 2970 1251.902 1578.183 6098.510432 test 7755535
## 2971 1251.902 1578.183 4524.886736 test 7755535
## 2972 1251.902 1578.183 4326.586788 test 7755535
## 2973 1251.902 1578.183 3112.329492 test 7755535
## 2974 1251.902 1578.183 1399.563639 test 7755535
## 2975 1251.902 1578.183 1941.402807 test 7755535
## 2976 1251.902 1578.183 2332.112245 test 7755535
## 2977 1251.902 1578.183 1632.063427 test 7755535
## 2978 1251.902 1578.183 2546.130937 test 7755535
## 2979 1251.902 1578.183 2669.077052 test 7755535
## 2980 1251.902 1578.183 1907.705342 test 7755535
## 2981 1251.902 1578.183 1528.592802 test 7755535
## 2982 1251.902 1578.183 2310.215284 test 7755535
## 2983 1251.902 1578.183 3384.932555 test 7755535
## 2984 1251.902 1578.183 2340.488453 test 7755535
## 2985 1251.902 1578.183 4973.294922 test 7755535
## 2986 1251.902 1578.183 2960.211752 test 7755535
## 2987 1251.902 1578.183 3666.416078 test 7755535
## 2988 1251.902 1578.183 6937.922802 test 7755535
## 2989 1251.902 1578.183 9514.293037 test 7755535
## 2990 1251.902 1578.183 5495.951063 test 7755535
## 2991 1251.902 1578.183 4897.001341 test 7755535
## 2992 1251.902 1578.183 4574.024895 test 7755535
## 2993 1251.902 1578.183 7674.330715 test 7755535
## 2994 1251.902 1578.183 2967.058366 test 7755535
## 2995 1251.902 1578.183 1998.090647 test 7755535
## 2996 1251.902 1578.183 1488.190847 test 7755535
## 2997 1251.902 1578.183 1197.792973 test 7755535
## 2998 1251.902 1578.183 1655.903071 test 7755535
## 2999 1251.902 1578.183 3814.207546 test 7755535
## 3000 1251.902 1578.183 4620.831501 test 7755535
## 3001 1251.902 1578.183 3953.763981 test 7755535
## 3002 1251.902 1578.183 3772.428499 test 7755535
## 3003 1251.902 1578.183 6131.818570 test 7755535
## 3004 1251.902 1578.183 7762.098361 test 7755535
## 3005 1251.902 1578.183 12384.860450 test 7755535
## 3006 1251.902 1578.183 10564.644243 test 7755535
## 3007 1251.902 1578.183 7119.239067 test 7755535
## 3008 1251.902 1578.183 5646.957112 test 7755535
## 3009 1251.902 1578.183 4063.000630 test 7755535
## 3010 1251.902 1578.183 4328.359195 test 7755535
## 3011 1251.902 1578.183 3505.460047 test 7755535
## 3012 1251.902 1578.183 2266.511022 test 7755535
## 3013 1251.902 1578.183 2698.468148 test 7755535
## 3014 1251.902 1578.183 2859.017803 test 7755535
## 3015 1251.902 1578.183 3034.937693 test 7755535
## 3016 1251.902 1578.183 1898.622334 test 7755535
## 3017 1251.902 1578.183 2457.249439 test 7755535
## 3018 1251.902 1578.183 1887.627609 test 7755535
## 3019 1251.902 1578.183 2271.707325 test 7755535
## 3020 1251.902 1578.183 3207.857564 test 7755535
## 3021 1251.902 1578.183 3321.384072 test 7755535
## 3022 1251.902 1578.183 2385.898825 test 7755535
## 3023 1251.902 1578.183 1630.966933 test 7755535
## 3024 1251.902 1578.183 1470.063871 test 7755535
## 3025 1251.902 1578.183 1046.947169 test 7755535
## 3026 1251.902 1578.183 823.606589 test 7755535
## 3027 1251.902 1578.183 1118.672498 test 7755535
## 3028 1251.902 1578.183 1853.269376 test 7755535
## 3029 1251.902 1578.183 1232.900605 test 7755535
## 3030 1251.902 1578.183 1114.851533 test 7755535
## 3031 1251.902 1578.183 1757.413567 test 7755535
## 3032 1251.902 1578.183 1636.165864 test 7755535
## 3033 1251.902 1578.183 1395.698976 test 7755535
## 3034 1251.902 1578.183 1651.607276 test 7755535
## 3035 1251.902 1578.183 970.975026 test 7755535
## 3036 1251.902 1578.183 722.093996 test 7755535
## 3037 1251.902 1578.183 693.635067 test 7755535
## 3038 1251.902 1578.183 846.111208 test 7755535
## 3039 1251.902 1578.183 880.506637 test 7755535
## 3040 1251.902 1578.183 1150.243256 test 7755535
## 3041 1251.902 1578.183 577.117789 test 7755535
## 3042 1251.902 1578.183 787.834739 test 7755535
## 3043 1251.902 1578.183 1011.954289 test 7755535
## 3044 1251.902 1578.183 1027.196562 test 7755535
## 3045 1251.902 1578.183 879.510097 test 7755535
## 3046 1251.902 1578.183 651.616738 test 7755535
## 3047 1251.902 1578.183 615.033002 test 7755535
## 3048 1251.902 1578.183 474.093684 test 7755535
## 3049 1251.902 1578.183 519.300593 test 7755535
## 3050 1251.902 1578.183 744.593575 test 7755535
## 3051 1251.902 1578.183 737.322348 test 7755535
## 3052 1251.902 1578.183 658.213863 test 7755535
## 3053 1251.902 1578.183 533.491311 test 7755535
## 3054 1251.902 1578.183 537.967953 test 7755535
## 3055 1251.902 1578.183 568.524482 test 7755535
## 3056 1251.902 1578.183 711.207873 test 7755535
## 3057 1251.902 1578.183 980.831848 test 7755535
## 3058 1251.902 1578.183 892.166710 test 7755535
## 3059 1251.902 1578.183 843.743472 test 7755535
## 3060 1251.902 1578.183 1025.233903 test 7755535
## 3061 1251.902 1578.183 809.360763 test 7755535
## 3062 1251.902 1578.183 1107.253899 test 7755535
## 3063 1251.902 1578.183 738.433439 test 7755535
## 3064 1251.902 1578.183 741.079151 test 7755535
## 3065 1251.902 1578.183 979.168236 test 7755535
## 3066 1251.902 1578.183 1151.251074 test 7755535
## 3067 1251.902 1578.183 878.899736 test 7755535
## 3068 1251.902 1578.183 1323.358863 test 7755535
## 3069 1251.902 1578.183 1087.674593 test 7755535
## 3070 1251.902 1578.183 987.921774 test 7755535
## 3071 1251.902 1578.183 1174.750896 test 7755535
## 3072 1251.902 1578.183 1128.735624 test 7755535
## 3073 1251.902 1578.183 843.035731 test 7755535
## 3074 1251.902 1578.183 749.001275 test 7755535
## 3075 1251.902 1578.183 681.261889 test 7755535
## 3076 1251.902 1578.183 398.227753 test 7755535
## 3077 1251.902 1578.183 93.694996 test 7755535
## 3078 1251.902 1578.183 692.160852 test 7755535
## 3079 1251.902 1578.183 1237.806124 test 7755535
## 3080 1251.902 1578.183 1190.873575 test 7755535
## 3081 1251.902 1578.183 442.100238 test 7755535
## 3082 1251.902 1578.183 764.342834 test 7755535
## 3083 1251.902 1578.183 926.325183 test 7755535
## 3084 1251.902 1578.183 840.316967 test 7755535
## 3085 1251.902 1578.183 750.430072 test 7755535
## 3086 1251.902 1578.183 795.636008 test 7755535
## 3087 1251.902 1578.183 716.576862 test 7755535
## 3088 1251.902 1578.183 576.498275 test 7755535
## 3089 1251.902 1578.183 623.700644 test 7755535
## 3090 1251.902 1578.183 693.988392 test 7755535
## 3091 1251.902 1578.183 520.239745 test 7755535
## 3092 1251.902 1578.183 528.059827 test 7755535
## 3093 1251.902 1578.183 611.989807 test 7755535
## 3094 1251.902 1578.183 471.669171 test 7755535
## 3095 1251.902 1578.183 549.822246 test 7755535
## 3096 1251.902 1578.183 551.013021 test 7755535
## 3097 1251.902 1578.183 526.989189 test 7755535
## 3098 1251.902 1578.183 509.515390 test 7755535
## 3099 1251.902 1578.183 664.920573 test 7755535
## 3100 1251.902 1578.183 548.121320 test 7755535
## 3101 1251.902 1578.183 749.927242 test 7755535
## 3102 1251.902 1578.183 517.524155 test 7755535
## 3103 1251.902 1578.183 486.220962 test 7755535
## 3104 1251.902 1578.183 550.303999 test 7755535
## 3105 1251.902 1578.183 811.225883 test 7755535
## 3106 1251.902 1578.183 758.174983 test 7755535
## 3107 1251.902 1578.183 617.366039 test 7755535
## 3108 1251.902 1578.183 552.529406 test 7755535
## 3109 1251.902 1578.183 809.435477 test 7755535
## 3110 1251.902 1578.183 719.929426 test 7755535
## 3111 1251.902 1578.183 511.691709 test 7755535
## 3112 1251.902 1578.183 441.497361 test 7755535
## 3113 1251.902 1578.183 510.706176 test 7755535
## 3114 1251.902 1578.183 176.803999 test 7755535
## 3115 1251.902 1578.183 214.928158 test 7755535
## 3116 1251.902 1578.183 389.259212 test 7755535
## 3117 1251.902 1578.183 297.252811 test 7755535
## 3118 1251.902 1578.183 606.193580 test 7755535
## 3119 1251.902 1578.183 927.333033 test 7755535
## 3120 1251.902 1578.183 672.646727 test 7755535
## 3121 1251.902 1578.183 837.662269 test 7755535
## 3122 1251.902 1578.183 839.584810 test 7755535
## 3123 1251.902 1578.183 1238.628489 test 7755535
## 3124 1251.902 1578.183 1105.662576 test 7755535
## 3125 1251.902 1578.183 1590.057966 test 7755535
## 3126 1251.902 1578.183 1282.912801 test 7755535
## 3127 1251.902 1578.183 825.335493 test 7755535
## 3128 1251.902 1578.183 939.624053 test 7755535
## 3129 1251.902 1578.183 851.306789 test 7755535
## 3130 1251.902 1578.183 727.052399 test 7755535
## 3131 1251.902 1578.183 594.420039 test 7755535
## 3132 1251.902 1578.183 587.241034 test 7755535
## 3133 1251.902 1578.183 405.069801 test 7755535
## 3134 1251.902 1578.183 142.512710 test 7755535
## 3135 1251.902 1578.183 118.508562 test 7755535
## 3136 1251.902 1578.183 239.345853 test 7755535
## 3137 1251.902 1578.183 528.456823 test 7755535
## 3138 1251.902 1578.183 432.348758 test 7755535
## 3139 1251.902 1578.183 368.786841 test 7755535
## 3140 1251.902 1578.183 388.961313 test 7755535
## 3141 1251.902 1578.183 301.758943 test 7755535
## 3142 1251.902 1578.183 303.595965 test 7755535
## 3143 1251.902 1578.183 571.430699 test 7755535
## 3144 1251.902 1578.183 669.565434 test 7755535
## 3145 1251.902 1578.183 437.306188 test 7755535
## 3146 1251.902 1578.183 441.525187 test 7755535
## 3147 1251.902 1578.183 580.873298 test 7755535
## 3148 1251.902 1578.183 271.026509 test 7755535
## 3149 1251.902 1578.183 326.642985 test 7755535
## 3150 1251.902 1578.183 527.782891 test 7755535
## 3151 1251.902 1578.183 400.742594 test 7755535
## 3152 1251.902 1578.183 452.253639 test 7755535
## 3153 1251.902 1578.183 512.550991 test 7755535
## 3154 1251.902 1578.183 550.723925 test 7755535
## 3155 1251.902 1578.183 624.024152 test 7755535
## 3156 1251.902 1578.183 791.985418 test 7755535
## 3157 1251.902 1578.183 964.254256 test 7755535
## 3158 1251.902 1578.183 545.713456 test 7755535
## 3159 1251.902 1578.183 826.989337 test 7755535
## 3160 1251.902 1578.183 617.055082 test 7755535
## 3161 1251.902 1578.183 523.472873 test 7755535
## 3162 1251.902 1578.183 418.772074 test 7755535
## 3163 1251.902 1578.183 451.307568 test 7755535
## 3164 1251.902 1578.183 484.618603 test 7755535
## 3165 1251.902 1578.183 932.636493 test 7755535
## 3166 1251.902 1578.183 1099.397526 test 7755535
## 3167 1251.902 1578.183 816.469458 test 7755535
## 3168 1251.902 1578.183 676.196452 test 7755535
## 3169 1251.902 1578.183 614.778434 test 7755535
## 3170 1251.902 1578.183 593.544723 test 7755535
## 3171 1251.902 1578.183 729.473372 test 7755535
## 3172 1251.902 1578.183 892.449480 test 7755535
## 3173 1251.902 1578.183 932.767523 test 7755535
## 3174 1251.902 1578.183 893.286986 test 7755535
## 3175 1251.902 1578.183 523.589793 test 7755535
## 3176 1251.902 1578.183 1020.814928 test 7755535
## 3177 1251.902 1578.183 869.156078 test 7755535
## 3178 1251.902 1578.183 735.639640 test 7755535
## 3179 1251.902 1578.183 852.167271 test 7755535
## 3180 1251.902 1578.183 1133.848230 test 7755535
## 3181 1251.902 1578.183 723.169140 test 7755535
## 3182 1251.902 1578.183 1034.499539 test 7755535
## 3183 1251.902 1578.183 885.379749 test 7755535
## 3184 1251.902 1578.183 810.010639 test 7755535
## 3185 1251.902 1578.183 945.664230 test 7755535
## 3186 1251.902 1578.183 901.027751 test 7755535
## 3187 1251.902 1578.183 893.686637 test 7755535
## 3188 1251.902 1578.183 480.511249 test 7755535
## 3189 1251.902 1578.183 679.666299 test 7755535
## 3190 1251.902 1578.183 770.045792 test 7755535
## 3191 1251.902 1578.183 768.951114 test 7755535
## 3192 1251.902 1578.183 674.798915 test 7755535
## 3193 1251.902 1578.183 421.030206 test 7755535
## 3194 1251.902 1578.183 324.049845 test 7755535
## 3195 1251.902 1578.183 500.329091 test 7755535
## 3196 1251.902 1578.183 518.793449 test 7755535
## 3197 1251.902 1578.183 668.704709 test 7755535
## 3198 1251.902 1578.183 404.527182 test 7755535
## 3199 1251.902 1578.183 423.453426 test 7755535
## 3200 1251.902 1578.183 524.545956 test 7755535
## 3201 1251.902 1578.183 547.569557 test 7755535
## 3202 1251.902 1578.183 645.248072 test 7755535
## 3203 1251.902 1578.183 366.174995 test 7755535
## 3204 1251.902 1578.183 573.902077 test 7755535
## 3205 1251.902 1578.183 516.653369 test 7755535
## 3206 1251.902 1578.183 396.215429 test 7755535
## 3207 1251.902 1578.183 451.581124 test 7755535
## 3208 1251.902 1578.183 455.476906 test 7755535
## 3209 1251.902 1578.183 521.869402 test 7755535
## 3210 1251.902 1578.183 561.641786 test 7755535
## 3211 1251.902 1578.183 377.469035 test 7755535
## 3212 1251.902 1578.183 416.557284 test 7755535
## 3213 1251.902 1578.183 345.258831 test 7755535
## 3214 1251.902 1578.183 418.211261 test 7755535
## 3215 1251.902 1578.183 228.202712 test 7755535
## 3216 1251.902 1578.183 618.939110 test 7755535
## 3217 1251.902 1578.183 433.233736 test 7755535
## 3218 1251.902 1578.183 634.470450 test 7755535
## 3219 1251.902 1578.183 526.175423 test 7755535
## 3220 1251.902 1578.183 633.300217 test 7755535
## 3221 1251.902 1578.183 557.641210 test 7755535
## 3222 1251.902 1578.183 647.484486 test 7755535
## 3223 1251.902 1578.183 482.170253 test 7755535
## 3224 1251.902 1578.183 833.838034 test 7755535
## 3225 1251.902 1578.183 799.703444 test 7755535
## 3226 1251.902 1578.183 805.894091 test 7755535
## 3227 1251.902 1578.183 827.151873 test 7755535
## 3228 1251.902 1578.183 894.274906 test 7755535
## 3229 1251.902 1578.183 948.062496 test 7755535
## 3230 1251.902 1578.183 1059.371537 test 7755535
## 3231 1251.902 1578.183 1006.591190 test 7755535
## 3232 1251.902 1578.183 908.117777 test 7755535
## 3233 1251.902 1578.183 1226.081976 test 7755535
## 3234 1251.902 1578.183 888.998582 test 7755535
## 3235 1251.902 1578.183 814.627157 test 7755535
## 3236 1251.902 1578.183 1104.422644 test 7755535
## 3237 1251.902 1578.183 720.475931 test 7755535
## 3238 1251.902 1578.183 1018.640614 test 7755535
## 3239 1251.902 1578.183 833.895102 test 7755535
## 3240 1251.902 1578.183 803.392468 test 7755535
## 3241 1251.902 1578.183 686.812596 test 7755535
## 3242 1251.902 1578.183 489.426935 test 7755535
## 3243 1251.902 1578.183 575.118550 test 7755535
## 3244 1251.902 1578.183 523.214095 test 7755535
## 3245 1251.902 1578.183 480.657544 test 7755535
## 3246 1251.902 1578.183 587.786020 test 7755535
## 3247 1251.902 1578.183 476.709762 test 7755535
## 3248 1251.902 1578.183 689.593643 test 7755535
## 3249 1251.902 1578.183 728.752543 test 7755535
## 3250 1251.902 1578.183 961.429866 test 7755535
## 3251 1251.902 1578.183 778.542132 test 7755535
## 3252 1251.902 1578.183 693.530159 test 7755535
## 3253 1251.902 1578.183 424.035543 test 7755535
## 3254 1251.902 1578.183 1136.661508 test 7755535
## 3255 1251.902 1578.183 223.060320 test 7755535
## 3256 1251.902 1578.183 1184.846009 test 7755535
## 3257 1251.902 1578.183 604.640595 test 7755535
## 3258 1251.902 1578.183 1114.040834 test 7755535
## 3259 1251.902 1578.183 674.773293 test 7755535
## 3260 1251.902 1578.183 1113.868421 test 7755535
## 3261 1251.902 1578.183 1591.765677 test 7755535
## 3262 1251.902 1578.183 1105.417186 test 7755535
## 3263 1251.902 1578.183 1102.433790 test 7755535
## 3264 1251.902 1578.183 733.201146 test 7755535
## 3265 1251.902 1578.183 1220.929222 test 7755535
## 3266 1251.902 1578.183 815.494806 test 7755535
## 3267 1251.902 1578.183 1003.936104 test 7755535
## 3268 1251.902 1578.183 875.053033 test 7755535
## 3269 1251.902 1578.183 898.517278 test 7755535
## 3270 1251.902 1578.183 702.777616 test 7755535
## 3271 1251.902 1578.183 1185.353995 test 7755535
## 3272 1251.902 1578.183 825.514278 test 7755535
## 3273 1251.902 1578.183 959.730466 test 7755535
## 3274 1251.902 1578.183 730.681676 test 7755535
## 3275 1251.902 1578.183 561.086249 test 7755535
## 3276 1251.902 1578.183 569.811063 test 7755535
## 3277 1251.902 1578.183 299.205879 test 7755535
## 3278 1251.902 1578.183 311.602932 test 7755535
## 3279 1251.902 1578.183 542.099054 test 7755535
## 3280 1251.902 1578.183 1212.474706 test 7755535
## 3281 1251.902 1578.183 437.601705 test 7755535
## 3282 1251.902 1578.183 653.633333 test 7755535
## 3283 1251.902 1578.183 724.473752 test 7755535
## 3284 1251.902 1578.183 766.224729 test 7755535
## 3285 1251.902 1578.183 677.011697 test 7755535
## 3286 1251.902 1578.183 670.343177 test 7755535
## 3287 1251.902 1578.183 1204.703034 test 7755535
## 3288 1251.902 1578.183 1160.308794 test 7755535
## 3289 1251.902 1578.183 1113.217252 test 7755535
## 3290 1251.902 1578.183 1184.246498 test 7755535
## 3291 1251.902 1578.183 1050.673600 test 7755535
## 3292 1251.902 1578.183 852.878534 test 7755535
## 3293 1251.902 1578.183 489.557669 test 7755535
## 3294 1251.902 1578.183 799.950631 test 7755535
## 3295 1251.902 1578.183 946.066809 test 7755535
## 3296 1251.902 1578.183 1223.500843 test 7755535
## 3297 1251.902 1578.183 476.848442 test 7755535
## 3298 1251.902 1578.183 1135.529492 test 7755535
## 3299 1251.902 1578.183 914.331843 test 7755535
## 3300 1251.902 1578.183 1251.174128 test 7755535
## 3301 1251.902 1578.183 1239.071855 test 7755535
## 3302 1251.902 1578.183 1185.158299 test 7755535
## 3303 1251.902 1578.183 1197.102832 test 7755535
## 3304 1251.902 1578.183 1188.328155 test 7755535
## 3305 1251.902 1578.183 1184.179580 test 7755535
## 3306 1251.902 1578.183 1197.787540 test 7755535
## 3307 1251.902 1578.183 1187.061460 test 7755535
## 3308 1251.902 1578.183 1188.125867 test 7755535
## 3309 1251.902 1578.183 1184.617768 test 7755535
## 3310 1251.902 1578.183 1186.257287 test 7755535
## 3311 1251.902 1578.183 1171.124605 test 7755535
## 3312 1251.902 1578.183 1242.064257 test 7755535
## 3313 1251.902 1578.183 1174.349958 test 7755535
## 3314 1251.902 1578.183 1169.661641 test 7755535
## 3315 1251.902 1578.183 1225.603764 test 7755535
## 3316 1251.902 1578.183 1166.179738 test 7755535
## 3317 1251.902 1578.183 1197.736752 test 7755535
## 3318 1251.902 1578.183 1207.886981 test 7755535
## 3319 1251.902 1578.183 1188.308684 test 7755535
## 3320 1251.902 1578.183 1193.028030 test 7755535
## 3321 1251.902 1578.183 1184.246565 test 7755535
## 3322 1251.902 1578.183 1194.582073 test 7755535
## 3323 1251.902 1578.183 1174.385162 test 7755535
## 3324 1251.902 1578.183 1174.331445 test 7755535
## 3325 1251.902 1578.183 1263.024422 test 7755535
## 3326 1251.902 1578.183 2403.215291 test 7755535
## 3327 1251.902 1578.183 1660.476590 test 7755535
## 3328 1251.902 1578.183 2254.242829 test 7755535
## 3329 1251.902 1578.183 2114.014020 test 7755535
## 3330 1251.902 1578.183 1401.056044 test 7755535
## 3331 1251.902 1578.183 2218.908474 test 7755535
## 3332 1251.902 1578.183 2108.041163 test 7755535
## 3333 1251.902 1578.183 4611.032376 test 7755535
## 3334 1251.902 1578.183 1754.316130 test 7755535
## 3335 1251.902 1578.183 2695.001664 test 7755535
## 3336 1251.902 1578.183 3018.377608 test 7755535
## 3337 1251.902 1578.183 1897.189038 test 7755535
## 3338 1251.902 1578.183 1542.123729 test 7755535
## 3339 1251.902 1578.183 2941.281467 test 7755535
## 3340 1251.902 1578.183 1311.057943 test 7755535
## 3341 1251.902 1578.183 1411.538849 test 7755535
## 3342 1251.902 1578.183 1979.041085 test 7755535
## 3343 1251.902 1578.183 1319.548499 test 7755535
## 3344 1251.902 1578.183 1410.120428 test 7755535
## 3345 1251.902 1578.183 1189.976824 test 7755535
## 3346 1251.902 1578.183 1147.431672 test 7755535
## 3347 1251.902 1578.183 1292.461798 test 7755535
## 3348 1251.902 1578.183 3010.391407 test 7755535
## 3349 1251.902 1578.183 1900.110802 test 7755535
## 3350 1251.902 1578.183 3632.801275 test 7755535
## 3351 1251.902 1578.183 2311.611331 test 7755535
## 3352 1251.902 1578.183 2063.308832 test 7755535
## 3353 1251.902 1578.183 2826.204047 test 7755535
## 3354 1251.902 1578.183 3615.963920 test 7755535
## 3355 1251.902 1578.183 3267.307271 test 7755535
## 3356 1251.902 1578.183 1580.988586 test 7755535
## 3357 1251.902 1578.183 3156.537071 test 7755535
## 3358 1251.902 1578.183 906.563352 test 7755535
## 3359 1251.902 1578.183 1835.997337 test 7755535
## 3360 1251.902 1578.183 1896.567394 test 7755535
## 3361 1251.902 1578.183 1472.270908 test 7755535
## 3362 1251.902 1578.183 1617.740370 test 7755535
## 3363 1251.902 1578.183 2623.517596 test 7755535
## 3364 1251.902 1578.183 3263.570625 test 7755535
## 3365 1251.902 1578.183 2020.830986 test 7755535
## 3366 1251.902 1578.183 1963.799191 test 7755535
## 3367 1251.902 1578.183 1518.014376 test 7755535
## 3368 1251.902 1578.183 1453.653908 test 7755535
## 3369 1251.902 1578.183 1817.555156 test 7755535
## 3370 1251.902 1578.183 1537.534981 test 7755535
## 3371 1251.902 1578.183 1253.290041 test 7755535
## 3372 1251.902 1578.183 1000.881810 test 7755535
## 3373 1251.902 1578.183 1217.601061 test 7755535
## 3374 1251.902 1578.183 1323.350544 test 7755535
## 3375 1251.902 1578.183 901.591564 test 7755535
## 3376 1251.902 1578.183 1328.298634 test 7755535
## 3377 1251.902 1578.183 746.086218 test 7755535
## 3378 1251.902 1578.183 743.820897 test 7755535
## 3379 1251.902 1578.183 1081.015741 test 7755535
## 3380 1251.902 1578.183 942.397662 test 7755535
## 3381 1251.902 1578.183 708.738293 test 7755535
## 3382 1251.902 1578.183 828.657390 test 7755535
## 3383 1251.902 1578.183 716.090815 test 7755535
## 3384 1251.902 1578.183 740.380278 test 7755535
## 3385 1251.902 1578.183 861.331022 test 7755535
## 3386 1251.902 1578.183 768.188053 test 7755535
## 3387 1251.902 1578.183 778.332771 test 7755535
## 3388 1251.902 1578.183 901.650969 test 7755535
## 3389 1251.902 1578.183 893.455927 test 7755535
## 3390 1251.902 1578.183 838.558448 test 7755535
## 3391 1251.902 1578.183 820.758058 test 7755535
## 3392 1251.902 1578.183 757.432974 test 7755535
## 3393 1251.902 1578.183 819.203097 test 7755535
## 3394 1251.902 1578.183 975.981150 test 7755535
## 3395 1251.902 1578.183 766.376566 test 7755535
## 3396 1251.902 1578.183 933.116671 test 7755535
## 3397 1251.902 1578.183 560.430028 test 7755535
## 3398 1251.902 1578.183 931.718282 test 7755535
## 3399 1251.902 1578.183 791.440637 test 7755535
## 3400 1251.902 1578.183 672.821324 test 7755535
## 3401 1251.902 1578.183 668.985669 test 7755535
## 3402 1251.902 1578.183 940.436131 test 7755535
## 3403 1251.902 1578.183 742.555228 test 7755535
## 3404 1251.902 1578.183 632.591489 test 7755535
## 3405 1251.902 1578.183 917.500272 test 7755535
## 3406 1251.902 1578.183 899.291244 test 7755535
## 3407 1251.902 1578.183 999.477406 test 7755535
## 3408 1251.902 1578.183 880.208397 test 7755535
## 3409 1251.902 1578.183 1093.282423 test 7755535
## 3410 1251.902 1578.183 1132.799667 test 7755535
## 3411 1251.902 1578.183 1207.567640 test 7755535
## 3412 1251.902 1578.183 884.848762 test 7755535
## 3413 1251.902 1578.183 820.293175 test 7755535
## 3414 1251.902 1578.183 1202.505423 test 7755535
## 3415 1251.902 1578.183 939.557927 test 7755535
## 3416 1251.902 1578.183 1075.038769 test 7755535
## 3417 1251.902 1578.183 845.172424 test 7755535
## 3418 1251.902 1578.183 837.094574 test 7755535
## 3419 1251.902 1578.183 584.427915 test 7755535
## 3420 1251.902 1578.183 749.038293 test 7755535
## 3421 1251.902 1578.183 382.457281 test 7755535
## 3422 1251.902 1578.183 521.496608 test 7755535
## 3423 1251.902 1578.183 562.610756 test 7755535
## 3424 1251.902 1578.183 1091.588303 test 7755535
## 3425 1251.902 1578.183 1338.482763 test 7755535
## 3426 1251.902 1578.183 745.046472 test 7755535
## 3427 1251.902 1578.183 630.138364 test 7755535
## 3428 1251.902 1578.183 645.450501 test 7755535
## 3429 1251.902 1578.183 754.223529 test 7755535
## 3430 1251.902 1578.183 710.436712 test 7755535
## 3431 1251.902 1578.183 714.461994 test 7755535
## 3432 1251.902 1578.183 588.580565 test 7755535
## 3433 1251.902 1578.183 535.527515 test 7755535
## 3434 1251.902 1578.183 483.915170 test 7755535
## 3435 1251.902 1578.183 480.804373 test 7755535
## 3436 1251.902 1578.183 471.639326 test 7755535
## 3437 1251.902 1578.183 525.163382 test 7755535
## 3438 1251.902 1578.183 520.620739 test 7755535
## 3439 1251.902 1578.183 688.377190 test 7755535
## 3440 1251.902 1578.183 593.780540 test 7755535
## 3441 1251.902 1578.183 627.922554 test 7755535
## 3442 1251.902 1578.183 491.130098 test 7755535
## 3443 1251.902 1578.183 596.138105 test 7755535
## 3444 1251.902 1578.183 436.925365 test 7755535
## 3445 1251.902 1578.183 474.216159 test 7755535
## 3446 1251.902 1578.183 513.927232 test 7755535
## 3447 1251.902 1578.183 468.253151 test 7755535
## 3448 1251.902 1578.183 739.551349 test 7755535
## 3449 1251.902 1578.183 742.110159 test 7755535
## 3450 1251.902 1578.183 538.074478 test 7755535
## 3451 1251.902 1578.183 773.541503 test 7755535
## 3452 1251.902 1578.183 765.950885 test 7755535
## 3453 1251.902 1578.183 645.246312 test 7755535
## 3454 1251.902 1578.183 754.776950 test 7755535
## 3455 1251.902 1578.183 868.092916 test 7755535
## 3456 1251.902 1578.183 705.843564 test 7755535
## 3457 1251.902 1578.183 623.470410 test 7755535
## 3458 1251.902 1578.183 666.814031 test 7755535
## 3459 1251.902 1578.183 641.317847 test 7755535
## 3460 1251.902 1578.183 523.652169 test 7755535
## 3461 1251.902 1578.183 396.014337 test 7755535
## 3462 1251.902 1578.183 494.219814 test 7755535
## 3463 1251.902 1578.183 534.208919 test 7755535
## 3464 1251.902 1578.183 667.930790 test 7755535
## 3465 1251.902 1578.183 311.601972 test 7755535
## 3466 1251.902 1578.183 278.504592 test 7755535
## 3467 1251.902 1578.183 534.127414 test 7755535
## 3468 1251.902 1578.183 698.040241 test 7755535
## 3469 1251.902 1578.183 693.332112 test 7755535
## 3470 1251.902 1578.183 762.549850 test 7755535
## 3471 1251.902 1578.183 633.578945 test 7755535
## 3472 1251.902 1578.183 463.612944 test 7755535
## 3473 1251.902 1578.183 1114.318395 test 7755535
## 3474 1251.902 1578.183 442.746352 test 7755535
## 3475 1251.902 1578.183 614.129316 test 7755535
## 3476 1251.902 1578.183 616.704056 test 7755535
## 3477 1251.902 1578.183 749.637823 test 7755535
## 3478 1251.902 1578.183 700.307416 test 7755535
## 3479 1251.902 1578.183 480.613506 test 7755535
## 3480 1251.902 1578.183 131.984727 test 7755535
## 3481 1251.902 1578.183 641.560322 test 7755535
## 3482 1251.902 1578.183 758.466292 test 7755535
## 3483 1251.902 1578.183 482.132253 test 7755535
## 3484 1251.902 1578.183 90.107851 test 7755535
## 3485 1251.902 1578.183 85.763419 test 7755535
## 3486 1251.902 1578.183 580.820353 test 7755535
## 3487 1251.902 1578.183 444.029707 test 7755535
## 3488 1251.902 1578.183 454.160556 test 7755535
## 3489 1251.902 1578.183 575.913162 test 7755535
## 3490 1251.902 1578.183 654.669218 test 7755535
## 3491 1251.902 1578.183 594.691347 test 7755535
## 3492 1251.902 1578.183 392.833739 test 7755535
## 3493 1251.902 1578.183 356.442188 test 7755535
## 3494 1251.902 1578.183 360.536158 test 7755535
## 3495 1251.902 1578.183 973.174912 test 7755535
## 3496 1251.902 1578.183 1052.414417 test 7755535
## 3497 1251.902 1578.183 726.761645 test 7755535
## 3498 1251.902 1578.183 551.809182 test 7755535
## 3499 1251.902 1578.183 620.548463 test 7755535
## 3500 1251.902 1578.183 412.384631 test 7755535
## 3501 1251.902 1578.183 337.644949 test 7755535
## 3502 1251.902 1578.183 594.074242 test 7755535
## 3503 1251.902 1578.183 480.519766 test 7755535
## 3504 1251.902 1578.183 769.743051 test 7755535
## 3505 1251.902 1578.183 618.080839 test 7755535
## 3506 1251.902 1578.183 722.372571 test 7755535
## 3507 1251.902 1578.183 763.988587 test 7755535
## 3508 1251.902 1578.183 822.454588 test 7755535
## 3509 1251.902 1578.183 836.225408 test 7755535
## 3510 1251.902 1578.183 608.988562 test 7755535
## 3511 1251.902 1578.183 733.905867 test 7755535
## 3512 1251.902 1578.183 597.476644 test 7755535
## 3513 1251.902 1578.183 577.400830 test 7755535
## 3514 1251.902 1578.183 864.216389 test 7755535
## 3515 1251.902 1578.183 998.346844 test 7755535
## 3516 1251.902 1578.183 648.403372 test 7755535
## 3517 1251.902 1578.183 695.717289 test 7755535
## 3518 1251.902 1578.183 894.035390 test 7755535
## 3519 1251.902 1578.183 959.257584 test 7755535
## 3520 1251.902 1578.183 699.240085 test 7755535
## 3521 1251.902 1578.183 992.693128 test 7755535
## 3522 1251.902 1578.183 808.795846 test 7755535
## 3523 1251.902 1578.183 804.968355 test 7755535
## 3524 1251.902 1578.183 664.367076 test 7755535
## 3525 1251.902 1578.183 657.358887 test 7755535
## 3526 1251.902 1578.183 670.995743 test 7755535
## 3527 1251.902 1578.183 821.957756 test 7755535
## 3528 1251.902 1578.183 520.313022 test 7755535
## 3529 1251.902 1578.183 280.227932 test 7755535
## 3530 1251.902 1578.183 850.080099 test 7755535
## 3531 1251.902 1578.183 644.601688 test 7755535
## 3532 1251.902 1578.183 575.636875 test 7755535
## 3533 1251.902 1578.183 946.788847 test 7755535
## 3534 1251.902 1578.183 573.270882 test 7755535
## 3535 1251.902 1578.183 673.920083 test 7755535
## 3536 1251.902 1578.183 484.548729 test 7755535
## 3537 1251.902 1578.183 725.956467 test 7755535
## 3538 1251.902 1578.183 241.086372 test 7755535
## 3539 1251.902 1578.183 423.256295 test 7755535
## 3540 1251.902 1578.183 333.497735 test 7755535
## 3541 1251.902 1578.183 435.942713 test 7755535
## 3542 1251.902 1578.183 502.212802 test 7755535
## 3543 1251.902 1578.183 747.560509 test 7755535
## 3544 1251.902 1578.183 579.695539 test 7755535
## 3545 1251.902 1578.183 367.944765 test 7755535
## 3546 1251.902 1578.183 376.539707 test 7755535
## 3547 1251.902 1578.183 406.199368 test 7755535
## 3548 1251.902 1578.183 319.780039 test 7755535
## 3549 1251.902 1578.183 309.997892 test 7755535
## 3550 1251.902 1578.183 468.697184 test 7755535
## 3551 1251.902 1578.183 384.462970 test 7755535
## 3552 1251.902 1578.183 348.616081 test 7755535
## 3553 1251.902 1578.183 508.072975 test 7755535
## 3554 1251.902 1578.183 436.737006 test 7755535
## 3555 1251.902 1578.183 565.366887 test 7755535
## 3556 1251.902 1578.183 355.478562 test 7755535
## 3557 1251.902 1578.183 503.559587 test 7755535
## 3558 1251.902 1578.183 550.162985 test 7755535
## 3559 1251.902 1578.183 528.718169 test 7755535
## 3560 1251.902 1578.183 525.177971 test 7755535
## 3561 1251.902 1578.183 563.170263 test 7755535
## 3562 1251.902 1578.183 423.330962 test 7755535
## 3563 1251.902 1578.183 422.072691 test 7755535
## 3564 1251.902 1578.183 320.069470 test 7755535
## 3565 1251.902 1578.183 993.862620 test 7755535
## 3566 1251.902 1578.183 740.902282 test 7755535
## 3567 1251.902 1578.183 747.692550 test 7755535
## 3568 1251.902 1578.183 739.358560 test 7755535
## 3569 1251.902 1578.183 796.585651 test 7755535
## 3570 1251.902 1578.183 964.469325 test 7755535
## 3571 1251.902 1578.183 796.851212 test 7755535
## 3572 1251.902 1578.183 913.359760 test 7755535
## 3573 1251.902 1578.183 836.360278 test 7755535
## 3574 1251.902 1578.183 882.152166 test 7755535
## 3575 1251.902 1578.183 978.773558 test 7755535
## 3576 1251.902 1578.183 799.847688 test 7755535
## 3577 1251.902 1578.183 771.696863 test 7755535
## 3578 1251.902 1578.183 1113.685806 test 7755535
## 3579 1251.902 1578.183 581.315935 test 7755535
## 3580 1251.902 1578.183 544.452111 test 7755535
## 3581 1251.902 1578.183 642.245120 test 7755535
## 3582 1251.902 1578.183 928.789567 test 7755535
## 3583 1251.902 1578.183 614.533543 test 7755535
## 3584 1251.902 1578.183 728.594239 test 7755535
## 3585 1251.902 1578.183 640.574020 test 7755535
## 3586 1251.902 1578.183 819.239827 test 7755535
## 3587 1251.902 1578.183 534.210989 test 7755535
## 3588 1251.902 1578.183 578.805993 test 7755535
## 3589 1251.902 1578.183 880.391236 test 7755535
## 3590 1251.902 1578.183 620.336050 test 7755535
## 3591 1251.902 1578.183 682.953532 test 7755535
## 3592 1251.902 1578.183 972.152651 test 7755535
## 3593 1251.902 1578.183 771.920633 test 7755535
## 3594 1251.902 1578.183 746.949012 test 7755535
## 3595 1251.902 1578.183 1028.779264 test 7755535
## 3596 1251.902 1578.183 1300.354903 test 7755535
## 3597 1251.902 1578.183 957.439726 test 7755535
## 3598 1251.902 1578.183 874.672376 test 7755535
## 3599 1251.902 1578.183 992.481063 test 7755535
## 3600 1251.902 1578.183 738.384729 test 7755535
## 3601 1251.902 1578.183 719.774407 test 7755535
## 3602 1251.902 1578.183 769.668529 test 7755535
## 3603 1251.902 1578.183 1300.290319 test 7755535
## 3604 1251.902 1578.183 963.525166 test 7755535
## 3605 1251.902 1578.183 894.378798 test 7755535
## 3606 1251.902 1578.183 763.300576 test 7755535
## 3607 1251.902 1578.183 1067.245949 test 7755535
## 3608 1251.902 1578.183 731.229795 test 7755535
## 3609 1251.902 1578.183 1084.350135 test 7755535
## 3610 1251.902 1578.183 378.052500 test 7755535
## 3611 1251.902 1578.183 792.459959 test 7755535
## 3612 1251.902 1578.183 1957.069191 test 7755535
## 3613 1251.902 1578.183 991.356652 test 7755535
## 3614 1251.902 1578.183 1240.440663 test 7755535
## 3615 1251.902 1578.183 1853.201142 test 7755535
## 3616 1251.902 1578.183 977.140117 test 7755535
## 3617 1251.902 1578.183 792.603880 test 7755535
## 3618 1251.902 1578.183 744.115062 test 7755535
## 3619 1251.902 1578.183 1044.146876 test 7755535
## 3620 1251.902 1578.183 1182.104964 test 7755535
## 3621 1251.902 1578.183 1271.264823 test 7755535
## 3622 1251.902 1578.183 1226.621863 test 7755535
## 3623 1251.902 1578.183 1190.294736 test 7755535
## 3624 1251.902 1578.183 1202.654458 test 7755535
## 3625 1251.902 1578.183 1215.790329 test 7755535
## 3626 1251.902 1578.183 1174.514697 test 7755535
## 3627 1251.902 1578.183 1187.866992 test 7755535
## 3628 1251.902 1578.183 1224.055700 test 7755535
## 3629 1251.902 1578.183 1351.930940 test 7755535
## 3630 1251.902 1578.183 1395.748634 test 7755535
## 3631 1251.902 1578.183 1169.316170 test 7755535
## 3632 1251.902 1578.183 1191.357264 test 7755535
## 3633 1251.902 1578.183 1187.840776 test 7755535
## 3634 1251.902 1578.183 1176.567591 test 7755535
## 3635 1251.902 1578.183 1162.109299 test 7755535
## 3636 1251.902 1578.183 1156.090734 test 7755535
## 3637 1251.902 1578.183 1155.725111 test 7755535
## 3638 1251.902 1578.183 970.337767 test 7755535
## 3639 1251.902 1578.183 1174.294564 test 7755535
## 3640 1251.902 1578.183 829.161117 test 7755535
## 3641 1251.902 1578.183 1150.920242 test 7755535
## 3642 1251.902 1578.183 1089.317821 test 7755535
## 3643 1251.902 1578.183 1050.147149 test 7755535
## 3644 1251.902 1578.183 1197.523054 test 7755535
## 3645 1251.902 1578.183 1200.967539 test 7755535
## 3646 1251.902 1578.183 1193.544290 test 7755535
## 3647 1251.902 1578.183 1194.562662 test 7755535
## 3648 1251.902 1578.183 1189.490304 test 7755535
## 3649 1251.902 1578.183 1197.566160 test 7755535
## 3650 1251.902 1578.183 1189.974465 test 7755535
## 3651 1251.902 1578.183 1275.199858 test 7755535
## 3652 1251.902 1578.183 2368.399735 test 7755535
## 3653 1251.902 1578.183 1265.214236 test 7755535
## 3654 1251.902 1578.183 2224.642215 test 7755535
## 3655 1251.902 1578.183 1007.487657 test 7755535
## 3656 1251.902 1578.183 1066.530560 test 7755535
## 3657 1251.902 1578.183 892.527168 test 7755535
## 3658 1251.902 1578.183 864.258657 test 7755535
## 3659 1251.902 1578.183 1022.279729 test 7755535
## 3660 1251.902 1578.183 1001.077926 test 7755535
## 3661 1251.902 1578.183 1280.212497 test 7755535
## 3662 1251.902 1578.183 1412.014949 test 7755535
## 3663 1251.902 1578.183 2242.479279 test 7755535
## 3664 1251.902 1578.183 1582.862541 test 7755535
## 3665 1251.902 1578.183 2258.806628 test 7755535
## 3666 1251.902 1578.183 1354.676156 test 7755535
## 3667 1251.902 1578.183 1552.706576 test 7755535
## 3668 1251.902 1578.183 2337.772852 test 7755535
## 3669 1251.902 1578.183 3019.491376 test 7755535
## 3670 1251.902 1578.183 1915.773639 test 7755535
## 3671 1251.902 1578.183 1813.418196 test 7755535
## 3672 1251.902 1578.183 1433.004445 test 7755535
## 3673 1251.902 1578.183 1469.575649 test 7755535
## 3674 1251.902 1578.183 1284.055488 test 7755535
## 3675 1251.902 1578.183 1103.341827 test 7755535
## 3676 1251.902 1578.183 1253.958689 test 7755535
## 3677 1251.902 1578.183 1047.880977 test 7755535
## 3678 1251.902 1578.183 616.316134 test 7755535
## 3679 1251.902 1578.183 866.516660 test 7755535
## 3680 1251.902 1578.183 442.028486 test 7755535
## 3681 1251.902 1578.183 1257.402705 test 7755535
## 3682 1251.902 1578.183 2297.805324 test 7755535
## 3683 1251.902 1578.183 1797.017035 test 7755535
## 3684 1251.902 1578.183 2700.683822 test 7755535
## 3685 1251.902 1578.183 2859.937173 test 7755535
## 3686 1251.902 1578.183 1651.053359 test 7755535
## 3687 1251.902 1578.183 1169.728580 test 7755535
## 3688 1251.902 1578.183 1633.522675 test 7755535
## 3689 1251.902 1578.183 989.361503 test 7755535
## 3690 1251.902 1578.183 1579.885335 test 7755535
## 3691 1251.902 1578.183 1535.950674 test 7755535
## 3692 1251.902 1578.183 2870.232608 test 7755535
## 3693 1251.902 1578.183 2501.088234 test 7755535
## 3694 1251.902 1578.183 3590.714867 test 7755535
## 3695 1251.902 1578.183 3923.117962 test 7755535
## 3696 1251.902 1578.183 2775.621657 test 7755535
## 3697 1251.902 1578.183 1654.244824 test 7755535
## 3698 1251.902 1578.183 1480.047110 test 7755535
## 3699 1251.902 1578.183 2188.602589 test 7755535
## 3700 1251.902 1578.183 1926.774138 test 7755535
## 3701 1251.902 1578.183 1133.321757 test 7755535
## 3702 1251.902 1578.183 919.664464 test 7755535
## 3703 1251.902 1578.183 812.973789 test 7755535
## 3704 1251.902 1578.183 824.618234 test 7755535
## 3705 1251.902 1578.183 659.468412 test 7755535
## 3706 1251.902 1578.183 558.141478 test 7755535
## 3707 1251.902 1578.183 746.304134 test 7755535
## 3708 1251.902 1578.183 651.144467 test 7755535
## 3709 1251.902 1578.183 745.189498 test 7755535
## 3710 1251.902 1578.183 898.225640 test 7755535
## 3711 1251.902 1578.183 711.194831 test 7755535
## 3712 1251.902 1578.183 838.534917 test 7755535
## 3713 1251.902 1578.183 639.845698 test 7755535
## 3714 1251.902 1578.183 707.459166 test 7755535
## 3715 1251.902 1578.183 657.175510 test 7755535
## 3716 1251.902 1578.183 777.248245 test 7755535
## 3717 1251.902 1578.183 795.678249 test 7755535
## 3718 1251.902 1578.183 630.958369 test 7755535
## 3719 1251.902 1578.183 629.936282 test 7755535
## 3720 1251.902 1578.183 801.479992 test 7755535
## 3721 1251.902 1578.183 730.078806 test 7755535
## 3722 1251.902 1578.183 1272.236690 test 7755535
## 3723 1251.902 1578.183 798.231344 test 7755535
## 3724 1251.902 1578.183 796.115359 test 7755535
## 3725 1251.902 1578.183 630.659870 test 7755535
## 3726 1251.902 1578.183 630.200077 test 7755535
## 3727 1251.902 1578.183 628.839913 test 7755535
## 3728 1251.902 1578.183 632.390057 test 7755535
## 3729 1251.902 1578.183 632.324322 test 7755535
## 3730 1251.902 1578.183 630.498160 test 7755535
## 3731 1251.902 1578.183 609.172853 test 7755535
## 3732 1251.902 1578.183 613.632115 test 7755535
## 3733 1251.902 1578.183 847.496388 test 7755535
## 3734 1251.902 1578.183 894.112075 test 7755535
## 3735 1251.902 1578.183 799.056734 test 7755535
## 3736 1251.902 1578.183 826.507967 test 7755535
## 3737 1251.902 1578.183 772.006278 test 7755535
## 3738 1251.902 1578.183 829.261716 test 7755535
## 3739 1251.902 1578.183 765.199175 test 7755535
## 3740 1251.902 1578.183 940.765263 test 7755535
## 3741 1251.902 1578.183 743.909252 test 7755535
## 3742 1251.902 1578.183 786.123037 test 7755535
## 3743 1251.902 1578.183 757.381158 test 7755535
## 3744 1251.902 1578.183 813.918577 test 7755535
## 3745 1251.902 1578.183 522.586615 test 7755535
## 3746 1251.902 1578.183 464.128507 test 7755535
## 3747 1251.902 1578.183 1055.073061 test 7755535
## 3748 1251.902 1578.183 686.375297 test 7755535
## 3749 1251.902 1578.183 656.147749 test 7755535
## 3750 1251.902 1578.183 793.630928 test 7755535
## 3751 1251.902 1578.183 775.958333 test 7755535
## 3752 1251.902 1578.183 591.518869 test 7755535
## 3753 1251.902 1578.183 500.270239 test 7755535
## 3754 1251.902 1578.183 1111.520758 test 7755535
## 3755 1251.902 1578.183 700.026879 test 7755535
## 3756 1251.902 1578.183 832.330374 test 7755535
## 3757 1251.902 1578.183 439.640997 test 7755535
## 3758 1251.902 1578.183 494.807471 test 7755535
## 3759 1251.902 1578.183 619.211904 test 7755535
## 3760 1251.902 1578.183 581.355902 test 7755535
## 3761 1251.902 1578.183 622.264428 test 7755535
## 3762 1251.902 1578.183 682.102579 test 7755535
## 3763 1251.902 1578.183 564.656769 test 7755535
## 3764 1251.902 1578.183 492.728118 test 7755535
## 3765 1251.902 1578.183 721.174131 test 7755535
## 3766 1251.902 1578.183 474.686091 test 7755535
## 3767 1251.902 1578.183 550.819280 test 7755535
## 3768 1251.902 1578.183 597.819759 test 7755535
## 3769 1251.902 1578.183 623.529327 test 7755535
## 3770 1251.902 1578.183 524.961417 test 7755535
## 3771 1251.902 1578.183 472.255803 test 7755535
## 3772 1251.902 1578.183 405.808768 test 7755535
## 3773 1251.902 1578.183 511.965380 test 7755535
## 3774 1251.902 1578.183 725.697879 test 7755535
## 3775 1251.902 1578.183 808.206030 test 7755535
## 3776 1251.902 1578.183 522.560544 test 7755535
## 3777 1251.902 1578.183 592.874989 test 7755535
## 3778 1251.902 1578.183 480.104957 test 7755535
## 3779 1251.902 1578.183 407.855576 test 7755535
## 3780 1251.902 1578.183 612.450484 test 7755535
## 3781 1251.902 1578.183 665.234959 test 7755535
## 3782 1251.902 1578.183 604.150414 test 7755535
## 3783 1251.902 1578.183 607.416215 test 7755535
## 3784 1251.902 1578.183 556.140283 test 7755535
## 3785 1251.902 1578.183 467.793051 test 7755535
## 3786 1251.902 1578.183 685.404058 test 7755535
## 3787 1251.902 1578.183 629.212249 test 7755535
## 3788 1251.902 1578.183 579.392350 test 7755535
## 3789 1251.902 1578.183 719.506862 test 7755535
## 3790 1251.902 1578.183 562.500118 test 7755535
## 3791 1251.902 1578.183 561.575523 test 7755535
## 3792 1251.902 1578.183 527.848744 test 7755535
## 3793 1251.902 1578.183 505.213477 test 7755535
## 3794 1251.902 1578.183 511.516131 test 7755535
## 3795 1251.902 1578.183 433.056194 test 7755535
## 3796 1251.902 1578.183 354.097116 test 7755535
## 3797 1251.902 1578.183 522.015332 test 7755535
## 3798 1251.902 1578.183 489.342765 test 7755535
## 3799 1251.902 1578.183 328.808643 test 7755535
## 3800 1251.902 1578.183 340.715635 test 7755535
## 3801 1251.902 1578.183 423.713080 test 7755535
## 3802 1251.902 1578.183 736.822662 test 7755535
## 3803 1251.902 1578.183 999.522210 test 7755535
## 3804 1251.902 1578.183 770.881254 test 7755535
## 3805 1251.902 1578.183 754.417469 test 7755535
## 3806 1251.902 1578.183 620.806748 test 7755535
## 3807 1251.902 1578.183 1165.073318 test 7755535
## 3808 1251.902 1578.183 173.248095 test 7755535
## 3809 1251.902 1578.183 988.422801 test 7755535
## 3810 1251.902 1578.183 815.277428 test 7755535
## 3811 1251.902 1578.183 86.913879 test 7755535
## 3812 1251.902 1578.183 298.798209 test 7755535
## 3813 1251.902 1578.183 30.996293 test 7755535
## 3814 1251.902 1578.183 582.078945 test 7755535
## 3815 1251.902 1578.183 634.915935 test 7755535
## 3816 1251.902 1578.183 460.974233 test 7755535
## 3817 1251.902 1578.183 758.390594 test 7755535
## 3818 1251.902 1578.183 351.366707 test 7755535
## 3819 1251.902 1578.183 241.433978 test 7755535
## 3820 1251.902 1578.183 604.234618 test 7755535
## 3821 1251.902 1578.183 791.476944 test 7755535
## 3822 1251.902 1578.183 568.831858 test 7755535
## 3823 1251.902 1578.183 622.941044 test 7755535
## 3824 1251.902 1578.183 146.584670 test 7755535
## 3825 1251.902 1578.183 723.260004 test 7755535
## 3826 1251.902 1578.183 628.095705 test 7755535
## 3827 1251.902 1578.183 629.979277 test 7755535
## 3828 1251.902 1578.183 21.475232 test 7755535
## 3829 1251.902 1578.183 19.718210 test 7755535
## 3830 1251.902 1578.183 657.617062 test 7755535
## 3831 1251.902 1578.183 622.498208 test 7755535
## 3832 1251.902 1578.183 739.313378 test 7755535
## 3833 1251.902 1578.183 773.905487 test 7755535
## 3834 1251.902 1578.183 531.685597 test 7755535
## 3835 1251.902 1578.183 465.265941 test 7755535
## 3836 1251.902 1578.183 716.516792 test 7755535
## 3837 1251.902 1578.183 390.260299 test 7755535
## 3838 1251.902 1578.183 464.549033 test 7755535
## 3839 1251.902 1578.183 825.755926 test 7755535
## 3840 1251.902 1578.183 1045.641312 test 7755535
## 3841 1251.902 1578.183 320.569902 test 7755535
## 3842 1251.902 1578.183 557.244385 test 7755535
## 3843 1251.902 1578.183 713.532223 test 7755535
## 3844 1251.902 1578.183 806.461156 test 7755535
## 3845 1251.902 1578.183 650.064794 test 7755535
## 3846 1251.902 1578.183 688.762721 test 7755535
## 3847 1251.902 1578.183 862.886929 test 7755535
## 3848 1251.902 1578.183 860.235706 test 7755535
## 3849 1251.902 1578.183 1264.946350 test 7755535
## 3850 1251.902 1578.183 922.359025 test 7755535
## 3851 1251.902 1578.183 608.686346 test 7755535
## 3852 1251.902 1578.183 495.245884 test 7755535
## 3853 1251.902 1578.183 564.786854 test 7755535
## 3854 1251.902 1578.183 602.512418 test 7755535
## 3855 1251.902 1578.183 284.021107 test 7755535
## 3856 1251.902 1578.183 341.752528 test 7755535
## 3857 1251.902 1578.183 472.023286 test 7755535
## 3858 1251.902 1578.183 509.251379 test 7755535
## 3859 1251.902 1578.183 223.648623 test 7755535
## 3860 1251.902 1578.183 205.480364 test 7755535
## 3861 1251.902 1578.183 367.218901 test 7755535
## 3862 1251.902 1578.183 425.948738 test 7755535
## 3863 1251.902 1578.183 580.695496 test 7755535
## 3864 1251.902 1578.183 806.233409 test 7755535
## 3865 1251.902 1578.183 503.988871 test 7755535
## 3866 1251.902 1578.183 519.689642 test 7755535
## 3867 1251.902 1578.183 572.423354 test 7755535
## 3868 1251.902 1578.183 238.444532 test 7755535
## 3869 1251.902 1578.183 774.263718 test 7755535
## 3870 1251.902 1578.183 758.011079 test 7755535
## 3871 1251.902 1578.183 385.234230 test 7755535
## 3872 1251.902 1578.183 559.070110 test 7755535
## 3873 1251.902 1578.183 409.186184 test 7755535
## 3874 1251.902 1578.183 428.460630 test 7755535
## 3875 1251.902 1578.183 281.732769 test 7755535
## 3876 1251.902 1578.183 325.759660 test 7755535
## 3877 1251.902 1578.183 491.327051 test 7755535
## 3878 1251.902 1578.183 549.231683 test 7755535
## 3879 1251.902 1578.183 280.939105 test 7755535
## 3880 1251.902 1578.183 265.187994 test 7755535
## 3881 1251.902 1578.183 224.759300 test 7755535
## 3882 1251.902 1578.183 269.480953 test 7755535
## 3883 1251.902 1578.183 480.151769 test 7755535
## 3884 1251.902 1578.183 491.603627 test 7755535
## 3885 1251.902 1578.183 385.801048 test 7755535
## 3886 1251.902 1578.183 441.416817 test 7755535
## 3887 1251.902 1578.183 288.323899 test 7755535
## 3888 1251.902 1578.183 336.554774 test 7755535
## 3889 1251.902 1578.183 442.330719 test 7755535
## 3890 1251.902 1578.183 351.988385 test 7755535
## 3891 1251.902 1578.183 535.011636 test 7755535
## 3892 1251.902 1578.183 496.489033 test 7755535
## 3893 1251.902 1578.183 533.071504 test 7755535
## 3894 1251.902 1578.183 472.459501 test 7755535
## 3895 1251.902 1578.183 677.198357 test 7755535
## 3896 1251.902 1578.183 767.950227 test 7755535
## 3897 1251.902 1578.183 955.732781 test 7755535
## 3898 1251.902 1578.183 900.245744 test 7755535
## 3899 1251.902 1578.183 1121.918344 test 7755535
## 3900 1251.902 1578.183 994.797387 test 7755535
## 3901 1251.902 1578.183 751.939760 test 7755535
## 3902 1251.902 1578.183 785.901294 test 7755535
## 3903 1251.902 1578.183 1144.462126 test 7755535
## 3904 1251.902 1578.183 639.290625 test 7755535
## 3905 1251.902 1578.183 677.512689 test 7755535
## 3906 1251.902 1578.183 577.891184 test 7755535
## 3907 1251.902 1578.183 483.033945 test 7755535
## 3908 1251.902 1578.183 1307.642254 test 7755535
## 3909 1251.902 1578.183 822.142571 test 7755535
## 3910 1251.902 1578.183 412.422021 test 7755535
## 3911 1251.902 1578.183 476.221558 test 7755535
## 3912 1251.902 1578.183 623.387891 test 7755535
## 3913 1251.902 1578.183 707.364800 test 7755535
## 3914 1251.902 1578.183 471.735027 test 7755535
## 3915 1251.902 1578.183 584.653830 test 7755535
## 3916 1251.902 1578.183 602.473098 test 7755535
## 3917 1251.902 1578.183 863.861676 test 7755535
## 3918 1251.902 1578.183 728.601146 test 7755535
## 3919 1251.902 1578.183 789.437059 test 7755535
## 3920 1251.902 1578.183 893.507054 test 7755535
## 3921 1251.902 1578.183 581.761654 test 7755535
## 3922 1251.902 1578.183 493.733998 test 7755535
## 3923 1251.902 1578.183 1330.453208 test 7755535
## 3924 1251.902 1578.183 933.052160 test 7755535
## 3925 1251.902 1578.183 820.834875 test 7755535
## 3926 1251.902 1578.183 1015.737763 test 7755535
## 3927 1251.902 1578.183 881.955008 test 7755535
## 3928 1251.902 1578.183 1068.860903 test 7755535
## 3929 1251.902 1578.183 890.984669 test 7755535
## 3930 1251.902 1578.183 835.669540 test 7755535
## 3931 1251.902 1578.183 771.159278 test 7755535
## 3932 1251.902 1578.183 970.648648 test 7755535
## 3933 1251.902 1578.183 849.753177 test 7755535
## 3934 1251.902 1578.183 934.704054 test 7755535
## 3935 1251.902 1578.183 781.903858 test 7755535
## 3936 1251.902 1578.183 1111.899035 test 7755535
## 3937 1251.902 1578.183 811.383707 test 7755535
## 3938 1251.902 1578.183 562.667304 test 7755535
## 3939 1251.902 1578.183 1327.302691 test 7755535
## 3940 1251.902 1578.183 970.290898 test 7755535
## 3941 1251.902 1578.183 643.538406 test 7755535
## 3942 1251.902 1578.183 1203.943168 test 7755535
## 3943 1251.902 1578.183 611.185704 test 7755535
## 3944 1251.902 1578.183 1323.450867 test 7755535
## 3945 1251.902 1578.183 2043.180134 test 7755535
## 3946 1251.902 1578.183 2512.463420 test 7755535
## 3947 1251.902 1578.183 1461.806937 test 7755535
## 3948 1251.902 1578.183 1274.218826 test 7755535
## 3949 1251.902 1578.183 1416.897871 test 7755535
## 3950 1251.902 1578.183 1299.133767 test 7755535
## 3951 1251.902 1578.183 1072.213059 test 7755535
## 3952 1251.902 1578.183 1057.187858 test 7755535
## 3953 1251.902 1578.183 1006.136268 test 7755535
## 3954 1251.902 1578.183 1083.061344 test 7755535
## 3955 1251.902 1578.183 764.236961 test 7755535
## 3956 1251.902 1578.183 820.700073 test 7755535
## 3957 1251.902 1578.183 1198.912482 test 7755535
## 3958 1251.902 1578.183 1239.170094 test 7755535
## 3959 1251.902 1578.183 1020.236139 test 7755535
## 3960 1251.902 1578.183 1235.883252 test 7755535
## 3961 1251.902 1578.183 1108.050737 test 7755535
## 3962 1251.902 1578.183 933.229315 test 7755535
## 3963 1251.902 1578.183 1008.964272 test 7755535
## 3964 1251.902 1578.183 1261.897372 test 7755535
## 3965 1251.902 1578.183 1284.181075 test 7755535
## 3966 1251.902 1578.183 1003.442434 test 7755535
## 3967 1251.902 1578.183 849.513384 test 7755535
## 3968 1251.902 1578.183 1127.133606 test 7755535
## 3969 1251.902 1578.183 917.781634 test 7755535
## 3970 1251.902 1578.183 944.730171 test 7755535
## 3971 1251.902 1578.183 865.492782 test 7755535
## 3972 1251.902 1578.183 1309.825939 test 7755535
## 3973 1251.902 1578.183 1295.986703 test 7755535
## 3974 1251.902 1578.183 1230.642531 test 7755535
## 3975 1251.902 1578.183 1256.939963 test 7755535
## 3976 1251.902 1578.183 1483.048033 test 7755535
## 3977 1251.902 1578.183 1141.272861 test 7755535
## 3978 1251.902 1578.183 1506.383576 test 7755535
## 3979 1251.902 1578.183 1929.250729 test 7755535
## 3980 1251.902 1578.183 1818.207988 test 7755535
## 3981 1251.902 1578.183 1314.750355 test 7755535
## 3982 1251.902 1578.183 1145.404573 test 7755535
## 3983 1251.902 1578.183 887.179402 test 7755535
## 3984 1251.902 1578.183 838.187444 test 7755535
## 3985 1251.902 1578.183 792.615851 test 7755535
## 3986 1251.902 1578.183 937.731519 test 7755535
## 3987 1251.902 1578.183 1340.789929 test 7755535
## 3988 1251.902 1578.183 1281.528170 test 7755535
## 3989 1251.902 1578.183 1027.632480 test 7755535
## 3990 1251.902 1578.183 1104.473623 test 7755535
## 3991 1251.902 1578.183 1069.429006 test 7755535
## 3992 1251.902 1578.183 968.965223 test 7755535
## 3993 1251.902 1578.183 1747.483368 test 7755535
## 3994 1251.902 1578.183 1750.638745 test 7755535
## 3995 1251.902 1578.183 1834.919496 test 7755535
## 3996 1251.902 1578.183 3202.391002 test 7755535
## 3997 1251.902 1578.183 2091.660785 test 7755535
## 3998 1251.902 1578.183 3818.928313 test 7755535
## 3999 1251.902 1578.183 3371.616484 test 7755535
## 4000 1251.902 1578.183 2264.027977 test 7755535
## 4001 1251.902 1578.183 1339.350034 test 7755535
## 4002 1251.902 1578.183 1130.049293 test 7755535
## 4003 1251.902 1578.183 732.859775 test 7755535
## 4004 1251.902 1578.183 514.954959 test 7755535
## 4005 1251.902 1578.183 737.326086 test 7755535
## 4006 1251.902 1578.183 375.112649 test 7755535
## 4007 1251.902 1578.183 603.017437 test 7755535
## 4008 1251.902 1578.183 570.757249 test 7755535
## 4009 1251.902 1578.183 1206.710541 test 7755535
## 4010 1251.902 1578.183 1841.891536 test 7755535
## 4011 1251.902 1578.183 2290.511457 test 7755535
## 4012 1251.902 1578.183 2766.387869 test 7755535
## 4013 1251.902 1578.183 2132.169146 test 7755535
## 4014 1251.902 1578.183 998.996989 test 7755535
## 4015 1251.902 1578.183 1675.382000 test 7755535
## 4016 1251.902 1578.183 734.988257 test 7755535
## 4017 1251.902 1578.183 1553.769536 test 7755535
## 4018 1251.902 1578.183 1546.948061 test 7755535
## 4019 1251.902 1578.183 1576.982184 test 7755535
## 4020 1251.902 1578.183 1079.112864 test 7755535
## 4021 1251.902 1578.183 1008.196736 test 7755535
## 4022 1251.902 1578.183 966.511142 test 7755535
## 4023 1251.902 1578.183 1758.401269 test 7755535
## 4024 1251.902 1578.183 1683.659503 test 7755535
## 4025 1251.902 1578.183 3133.020871 test 7755535
## 4026 1251.902 1578.183 3702.744236 test 7755535
## 4027 1251.902 1578.183 2359.937030 test 7755535
## 4028 1251.902 1578.183 1863.380532 test 7755535
## 4029 1251.902 1578.183 1344.851662 test 7755535
## 4030 1251.902 1578.183 1716.012621 test 7755535
## 4031 1251.902 1578.183 1413.006447 test 7755535
## 4032 1251.902 1578.183 1191.540120 test 7755535
## 4033 1251.902 1578.183 479.069087 test 7755535
## 4034 1251.902 1578.183 582.568891 test 7755535
## 4035 1251.902 1578.183 851.002688 test 7755535
## 4036 1251.902 1578.183 544.477175 test 7755535
## 4037 1251.902 1578.183 637.685057 test 7755535
## 4038 1251.902 1578.183 968.693901 test 7755535
## 4039 1251.902 1578.183 941.581614 test 7755535
## 4040 1251.902 1578.183 753.888419 test 7755535
## 4041 1251.902 1578.183 944.268614 test 7755535
## 4042 1251.902 1578.183 703.648094 test 7755535
## 4043 1251.902 1578.183 786.938340 test 7755535
## 4044 1251.902 1578.183 736.866867 test 7755535
## 4045 1251.902 1578.183 628.976995 test 7755535
## 4046 1251.902 1578.183 632.973013 test 7755535
## 4047 1251.902 1578.183 628.479048 test 7755535
## 4048 1251.902 1578.183 632.660328 test 7755535
## 4049 1251.902 1578.183 629.878749 test 7755535
## 4050 1251.902 1578.183 910.650270 test 7755535
## 4051 1251.902 1578.183 912.988753 test 7755535
## 4052 1251.902 1578.183 630.933518 test 7755535
## 4053 1251.902 1578.183 633.079858 test 7755535
## 4054 1251.902 1578.183 747.572185 test 7755535
## 4055 1251.902 1578.183 745.556822 test 7755535
## 4056 1251.902 1578.183 705.325965 test 7755535
## 4057 1251.902 1578.183 704.429821 test 7755535
## 4058 1251.902 1578.183 656.102249 test 7755535
## 4059 1251.902 1578.183 653.327486 test 7755535
## 4060 1251.902 1578.183 839.583332 test 7755535
## 4061 1251.902 1578.183 838.367317 test 7755535
## 4062 1251.902 1578.183 839.449696 test 7755535
## 4063 1251.902 1578.183 794.873308 test 7755535
## 4064 1251.902 1578.183 747.984843 test 7755535
## 4065 1251.902 1578.183 964.312270 test 7755535
## 4066 1251.902 1578.183 704.754824 test 7755535
## 4067 1251.902 1578.183 778.220340 test 7755535
## 4068 1251.902 1578.183 739.563248 test 7755535
## 4069 1251.902 1578.183 728.318203 test 7755535
## 4070 1251.902 1578.183 828.353215 test 7755535
## 4071 1251.902 1578.183 688.148120 test 7755535
## 4072 1251.902 1578.183 879.575208 test 7755535
## 4073 1251.902 1578.183 840.099941 test 7755535
## 4074 1251.902 1578.183 737.816800 test 7755535
## 4075 1251.902 1578.183 1266.255132 test 7755535
## 4076 1251.902 1578.183 1031.238248 test 7755535
## 4077 1251.902 1578.183 546.010024 test 7755535
## 4078 1251.902 1578.183 548.412126 test 7755535
## 4079 1251.902 1578.183 771.835616 test 7755535
## 4080 1251.902 1578.183 631.049693 test 7755535
## 4081 1251.902 1578.183 718.573723 test 7755535
## 4082 1251.902 1578.183 838.690845 test 7755535
## 4083 1251.902 1578.183 1016.025650 test 7755535
## 4084 1251.902 1578.183 602.383700 test 7755535
## 4085 1251.902 1578.183 631.817343 test 7755535
## 4086 1251.902 1578.183 900.829504 test 7755535
## 4087 1251.902 1578.183 456.665065 test 7755535
## 4088 1251.902 1578.183 481.737714 test 7755535
## 4089 1251.902 1578.183 497.321749 test 7755535
## 4090 1251.902 1578.183 518.869792 test 7755535
## 4091 1251.902 1578.183 658.794340 test 7755535
## 4092 1251.902 1578.183 810.278843 test 7755535
## 4093 1251.902 1578.183 625.959244 test 7755535
## 4094 1251.902 1578.183 438.106590 test 7755535
## 4095 1251.902 1578.183 461.831381 test 7755535
## 4096 1251.902 1578.183 518.552354 test 7755535
## 4097 1251.902 1578.183 367.920965 test 7755535
## 4098 1251.902 1578.183 401.353212 test 7755535
## 4099 1251.902 1578.183 382.134611 test 7755535
## 4100 1251.902 1578.183 513.302686 test 7755535
## 4101 1251.902 1578.183 520.686358 test 7755535
## 4102 1251.902 1578.183 545.238423 test 7755535
## 4103 1251.902 1578.183 691.601720 test 7755535
## 4104 1251.902 1578.183 736.407347 test 7755535
## 4105 1251.902 1578.183 507.489122 test 7755535
## 4106 1251.902 1578.183 673.143676 test 7755535
## 4107 1251.902 1578.183 459.926275 test 7755535
## 4108 1251.902 1578.183 530.830661 test 7755535
## 4109 1251.902 1578.183 521.382605 test 7755535
## 4110 1251.902 1578.183 531.534854 test 7755535
## 4111 1251.902 1578.183 870.376957 test 7755535
## 4112 1251.902 1578.183 613.748762 test 7755535
## 4113 1251.902 1578.183 819.917226 test 7755535
## 4114 1251.902 1578.183 677.779656 test 7755535
## 4115 1251.902 1578.183 513.335263 test 7755535
## 4116 1251.902 1578.183 515.267828 test 7755535
## 4117 1251.902 1578.183 603.142088 test 7755535
## 4118 1251.902 1578.183 637.943013 test 7755535
## 4119 1251.902 1578.183 642.619727 test 7755535
## 4120 1251.902 1578.183 393.173761 test 7755535
## 4121 1251.902 1578.183 593.314383 test 7755535
## 4122 1251.902 1578.183 436.444140 test 7755535
## 4123 1251.902 1578.183 302.416825 test 7755535
## 4124 1251.902 1578.183 415.814602 test 7755535
## 4125 1251.902 1578.183 525.415807 test 7755535
## 4126 1251.902 1578.183 546.422835 test 7755535
## 4127 1251.902 1578.183 447.743097 test 7755535
## 4128 1251.902 1578.183 613.355352 test 7755535
## 4129 1251.902 1578.183 415.573086 test 7755535
## 4130 1251.902 1578.183 550.597175 test 7755535
## 4131 1251.902 1578.183 802.485615 test 7755535
## 4132 1251.902 1578.183 988.718100 test 7755535
## 4133 1251.902 1578.183 946.537303 test 7755535
## 4134 1251.902 1578.183 910.901926 test 7755535
## 4135 1251.902 1578.183 626.257389 test 7755535
## 4136 1251.902 1578.183 803.858985 test 7755535
## 4137 1251.902 1578.183 882.017183 test 7755535
## 4138 1251.902 1578.183 287.522917 test 7755535
## 4139 1251.902 1578.183 12.081466 test 7755535
## 4140 1251.902 1578.183 192.610382 test 7755535
## 4141 1251.902 1578.183 596.381699 test 7755535
## 4142 1251.902 1578.183 504.108915 test 7755535
## 4143 1251.902 1578.183 491.132430 test 7755535
## 4144 1251.902 1578.183 90.147113 test 7755535
## 4145 1251.902 1578.183 6.778778 test 7755535
## 4146 1251.902 1578.183 15.791270 test 7755535
## 4147 1251.902 1578.183 396.212199 test 7755535
## 4148 1251.902 1578.183 387.393771 test 7755535
## 4149 1251.902 1578.183 220.872828 test 7755535
## 4150 1251.902 1578.183 201.659616 test 7755535
## 4151 1251.902 1578.183 583.849399 test 7755535
## 4152 1251.902 1578.183 536.990853 test 7755535
## 4153 1251.902 1578.183 692.377458 test 7755535
## 4154 1251.902 1578.183 622.410477 test 7755535
## 4155 1251.902 1578.183 565.390239 test 7755535
## 4156 1251.902 1578.183 571.228449 test 7755535
## 4157 1251.902 1578.183 551.684551 test 7755535
## 4158 1251.902 1578.183 463.302126 test 7755535
## 4159 1251.902 1578.183 458.974237 test 7755535
## 4160 1251.902 1578.183 490.647520 test 7755535
## 4161 1251.902 1578.183 659.026740 test 7755535
## 4162 1251.902 1578.183 417.183367 test 7755535
## 4163 1251.902 1578.183 297.562973 test 7755535
## 4164 1251.902 1578.183 437.785750 test 7755535
## 4165 1251.902 1578.183 812.217956 test 7755535
## 4166 1251.902 1578.183 355.403493 test 7755535
## 4167 1251.902 1578.183 554.903496 test 7755535
## 4168 1251.902 1578.183 550.949397 test 7755535
## 4169 1251.902 1578.183 848.494904 test 7755535
## 4170 1251.902 1578.183 542.950593 test 7755535
## 4171 1251.902 1578.183 703.710613 test 7755535
## 4172 1251.902 1578.183 659.768632 test 7755535
## 4173 1251.902 1578.183 781.777269 test 7755535
## 4174 1251.902 1578.183 577.315188 test 7755535
## 4175 1251.902 1578.183 677.492119 test 7755535
## 4176 1251.902 1578.183 700.102790 test 7755535
## 4177 1251.902 1578.183 760.793359 test 7755535
## 4178 1251.902 1578.183 646.379273 test 7755535
## 4179 1251.902 1578.183 521.536437 test 7755535
## 4180 1251.902 1578.183 839.623352 test 7755535
## 4181 1251.902 1578.183 321.686956 test 7755535
## 4182 1251.902 1578.183 501.149519 test 7755535
## 4183 1251.902 1578.183 528.642235 test 7755535
## 4184 1251.902 1578.183 447.813009 test 7755535
## 4185 1251.902 1578.183 455.690465 test 7755535
## 4186 1251.902 1578.183 444.800914 test 7755535
## 4187 1251.902 1578.183 400.224920 test 7755535
## 4188 1251.902 1578.183 348.392632 test 7755535
## 4189 1251.902 1578.183 560.898242 test 7755535
## 4190 1251.902 1578.183 608.485857 test 7755535
## 4191 1251.902 1578.183 585.350867 test 7755535
## 4192 1251.902 1578.183 631.910356 test 7755535
## 4193 1251.902 1578.183 448.326011 test 7755535
## 4194 1251.902 1578.183 437.330786 test 7755535
## 4195 1251.902 1578.183 472.445135 test 7755535
## 4196 1251.902 1578.183 549.689631 test 7755535
## 4197 1251.902 1578.183 396.389568 test 7755535
## 4198 1251.902 1578.183 400.693829 test 7755535
## 4199 1251.902 1578.183 375.363839 test 7755535
## 4200 1251.902 1578.183 299.110853 test 7755535
## 4201 1251.902 1578.183 326.693253 test 7755535
## 4202 1251.902 1578.183 305.759484 test 7755535
## 4203 1251.902 1578.183 263.928214 test 7755535
## 4204 1251.902 1578.183 244.165549 test 7755535
## 4205 1251.902 1578.183 269.574832 test 7755535
## 4206 1251.902 1578.183 316.092147 test 7755535
## 4207 1251.902 1578.183 295.731022 test 7755535
## 4208 1251.902 1578.183 174.242309 test 7755535
## 4209 1251.902 1578.183 525.166314 test 7755535
## 4210 1251.902 1578.183 764.514340 test 7755535
## 4211 1251.902 1578.183 550.052915 test 7755535
## 4212 1251.902 1578.183 558.355751 test 7755535
## 4213 1251.902 1578.183 472.777010 test 7755535
## 4214 1251.902 1578.183 413.252703 test 7755535
## 4215 1251.902 1578.183 550.911762 test 7755535
## 4216 1251.902 1578.183 508.659053 test 7755535
## 4217 1251.902 1578.183 520.330414 test 7755535
## 4218 1251.902 1578.183 622.446321 test 7755535
## 4219 1251.902 1578.183 296.941014 test 7755535
## 4220 1251.902 1578.183 905.153576 test 7755535
## 4221 1251.902 1578.183 872.075833 test 7755535
## 4222 1251.902 1578.183 735.593886 test 7755535
## 4223 1251.902 1578.183 880.647406 test 7755535
## 4224 1251.902 1578.183 1059.923625 test 7755535
## 4225 1251.902 1578.183 943.945419 test 7755535
## 4226 1251.902 1578.183 812.006849 test 7755535
## 4227 1251.902 1578.183 873.679576 test 7755535
## 4228 1251.902 1578.183 696.679154 test 7755535
## 4229 1251.902 1578.183 1197.267076 test 7755535
## 4230 1251.902 1578.183 646.118471 test 7755535
## 4231 1251.902 1578.183 707.660685 test 7755535
## 4232 1251.902 1578.183 803.872842 test 7755535
## 4233 1251.902 1578.183 947.205400 test 7755535
## 4234 1251.902 1578.183 485.087177 test 7755535
## 4235 1251.902 1578.183 557.678240 test 7755535
## 4236 1251.902 1578.183 631.773741 test 7755535
## 4237 1251.902 1578.183 783.138205 test 7755535
## 4238 1251.902 1578.183 607.615569 test 7755535
## 4239 1251.902 1578.183 421.364578 test 7755535
## 4240 1251.902 1578.183 567.176905 test 7755535
## 4241 1251.902 1578.183 997.375720 test 7755535
## 4242 1251.902 1578.183 627.095243 test 7755535
## 4243 1251.902 1578.183 920.585569 test 7755535
## 4244 1251.902 1578.183 683.477283 test 7755535
## 4245 1251.902 1578.183 628.436149 test 7755535
## 4246 1251.902 1578.183 736.865060 test 7755535
## 4247 1251.902 1578.183 651.443616 test 7755535
## 4248 1251.902 1578.183 764.383533 test 7755535
## 4249 1251.902 1578.183 819.646062 test 7755535
## 4250 1251.902 1578.183 1687.369153 test 7755535
## 4251 1251.902 1578.183 918.196838 test 7755535
## 4252 1251.902 1578.183 819.238882 test 7755535
## 4253 1251.902 1578.183 995.118974 test 7755535
## 4254 1251.902 1578.183 1366.172212 test 7755535
## 4255 1251.902 1578.183 908.899210 test 7755535
## 4256 1251.902 1578.183 1054.715358 test 7755535
## 4257 1251.902 1578.183 1232.130441 test 7755535
## 4258 1251.902 1578.183 816.608256 test 7755535
## 4259 1251.902 1578.183 937.648917 test 7755535
## 4260 1251.902 1578.183 898.655989 test 7755535
## 4261 1251.902 1578.183 698.022579 test 7755535
## 4262 1251.902 1578.183 813.513815 test 7755535
## 4263 1251.902 1578.183 934.430553 test 7755535
## 4264 1251.902 1578.183 1156.646986 test 7755535
## 4265 1251.902 1578.183 1355.733459 test 7755535
## 4266 1251.902 1578.183 1036.269199 test 7755535
## 4267 1251.902 1578.183 1249.490199 test 7755535
## 4268 1251.902 1578.183 1058.991031 test 7755535
## 4269 1251.902 1578.183 1378.573983 test 7755535
## 4270 1251.902 1578.183 1155.885218 test 7755535
## 4271 1251.902 1578.183 942.262035 test 7755535
## 4272 1251.902 1578.183 1270.285101 test 7755535
## 4273 1251.902 1578.183 1196.025779 test 7755535
## 4274 1251.902 1578.183 1782.507198 test 7755535
## 4275 1251.902 1578.183 1035.835445 test 7755535
## 4276 1251.902 1578.183 758.855581 test 7755535
## 4277 1251.902 1578.183 1231.811063 test 7755535
## 4278 1251.902 1578.183 792.711681 test 7755535
## 4279 1251.902 1578.183 896.231059 test 7755535
## 4280 1251.902 1578.183 735.819393 test 7755535
## 4281 1251.902 1578.183 866.820261 test 7755535
## 4282 1251.902 1578.183 1059.011491 test 7755535
## 4283 1251.902 1578.183 1012.075560 test 7755535
## 4284 1251.902 1578.183 1084.693716 test 7755535
## 4285 1251.902 1578.183 1011.070598 test 7755535
## 4286 1251.902 1578.183 1001.006112 test 7755535
## 4287 1251.902 1578.183 958.493599 test 7755535
## 4288 1251.902 1578.183 1078.761725 test 7755535
## 4289 1251.902 1578.183 1292.272537 test 7755535
## 4290 1251.902 1578.183 1009.752204 test 7755535
## 4291 1251.902 1578.183 644.365964 test 7755535
## 4292 1251.902 1578.183 602.385297 test 7755535
## 4293 1251.902 1578.183 1174.427835 test 7755535
## 4294 1251.902 1578.183 1212.261478 test 7755535
## 4295 1251.902 1578.183 1457.390478 test 7755535
## 4296 1251.902 1578.183 1216.956583 test 7755535
## 4297 1251.902 1578.183 1915.194173 test 7755535
## 4298 1251.902 1578.183 1324.314271 test 7755535
## 4299 1251.902 1578.183 1304.973639 test 7755535
## 4300 1251.902 1578.183 1412.070704 test 7755535
## 4301 1251.902 1578.183 1640.952654 test 7755535
## 4302 1251.902 1578.183 1174.347901 test 7755535
## 4303 1251.902 1578.183 987.730992 test 7755535
## 4304 1251.902 1578.183 1303.288275 test 7755535
## 4305 1251.902 1578.183 1225.833729 test 7755535
## 4306 1251.902 1578.183 1325.748229 test 7755535
## 4307 1251.902 1578.183 1125.879529 test 7755535
## 4308 1251.902 1578.183 908.308958 test 7755535
## 4309 1251.902 1578.183 1317.137911 test 7755535
## 4310 1251.902 1578.183 1729.131191 test 7755535
## 4311 1251.902 1578.183 935.592195 test 7755535
## 4312 1251.902 1578.183 927.515955 test 7755535
## 4313 1251.902 1578.183 1394.189007 test 7755535
## 4314 1251.902 1578.183 928.619564 test 7755535
## 4315 1251.902 1578.183 1291.352526 test 7755535
## 4316 1251.902 1578.183 1287.378604 test 7755535
## 4317 1251.902 1578.183 1827.527888 test 7755535
## 4318 1251.902 1578.183 1929.070595 test 7755535
## 4319 1251.902 1578.183 1837.094444 test 7755535
## 4320 1251.902 1578.183 2484.183263 test 7755535
## 4321 1251.902 1578.183 2545.122548 test 7755535
## 4322 1251.902 1578.183 1331.347786 test 7755535
## 4323 1251.902 1578.183 2007.954630 test 7755535
## 4324 1251.902 1578.183 1074.489270 test 7755535
## 4325 1251.902 1578.183 1030.937231 test 7755535
## 4326 1251.902 1578.183 926.455157 test 7755535
## 4327 1251.902 1578.183 776.276289 test 7755535
## 4328 1251.902 1578.183 1095.427383 test 7755535
## 4329 1251.902 1578.183 1478.931484 test 7755535
## 4330 1251.902 1578.183 1996.370526 test 7755535
## 4331 1251.902 1578.183 1088.714833 test 7755535
## 4332 1251.902 1578.183 1023.555311 test 7755535
## 4333 1251.902 1578.183 928.811802 test 7755535
## 4334 1251.902 1578.183 928.698461 test 7755535
## 4335 1251.902 1578.183 926.344888 test 7755535
## 4336 1251.902 1578.183 1377.688331 test 7755535
## 4337 1251.902 1578.183 1242.420069 test 7755535
## 4338 1251.902 1578.183 1117.076278 test 7755535
## 4339 1251.902 1578.183 996.201380 test 7755535
## 4340 1251.902 1578.183 1999.297502 test 7755535
## 4341 1251.902 1578.183 1300.236597 test 7755535
## 4342 1251.902 1578.183 822.972053 test 7755535
## 4343 1251.902 1578.183 1147.021657 test 7755535
## 4344 1251.902 1578.183 779.798593 test 7755535
## 4345 1251.902 1578.183 986.326232 test 7755535
## 4346 1251.902 1578.183 756.290681 test 7755535
## 4347 1251.902 1578.183 852.047868 test 7755535
## 4348 1251.902 1578.183 678.350150 test 7755535
## 4349 1251.902 1578.183 743.621037 test 7755535
## 4350 1251.902 1578.183 627.104643 test 7755535
## 4351 1251.902 1578.183 1043.268304 test 7755535
## 4352 1251.902 1578.183 707.320944 test 7755535
## 4353 1251.902 1578.183 924.296081 test 7755535
## 4354 1251.902 1578.183 868.555183 test 7755535
## 4355 1251.902 1578.183 745.451437 test 7755535
## 4356 1251.902 1578.183 746.226854 test 7755535
## 4357 1251.902 1578.183 742.202491 test 7755535
## 4358 1251.902 1578.183 746.951983 test 7755535
## 4359 1251.902 1578.183 744.886476 test 7755535
## 4360 1251.902 1578.183 751.704498 test 7755535
## 4361 1251.902 1578.183 742.265736 test 7755535
## 4362 1251.902 1578.183 748.280054 test 7755535
## 4363 1251.902 1578.183 749.439310 test 7755535
## 4364 1251.902 1578.183 751.015235 test 7755535
## 4365 1251.902 1578.183 743.065893 test 7755535
## 4366 1251.902 1578.183 750.580262 test 7755535
## 4367 1251.902 1578.183 676.262508 test 7755535
## 4368 1251.902 1578.183 728.501175 test 7755535
## 4369 1251.902 1578.183 791.916113 test 7755535
## 4370 1251.902 1578.183 839.333675 test 7755535
## 4371 1251.902 1578.183 846.694083 test 7755535
## 4372 1251.902 1578.183 850.305551 test 7755535
## 4373 1251.902 1578.183 844.316807 test 7755535
## 4374 1251.902 1578.183 897.426590 test 7755535
## 4375 1251.902 1578.183 860.948275 test 7755535
## 4376 1251.902 1578.183 616.612024 test 7755535
## 4377 1251.902 1578.183 671.868322 test 7755535
## 4378 1251.902 1578.183 670.518621 test 7755535
## 4379 1251.902 1578.183 800.362425 test 7755535
## 4380 1251.902 1578.183 877.376607 test 7755535
## 4381 1251.902 1578.183 1194.858322 test 7755535
## 4382 1251.902 1578.183 1076.238414 test 7755535
## 4383 1251.902 1578.183 983.908725 test 7755535
## 4384 1251.902 1578.183 1082.651886 test 7755535
## 4385 1251.902 1578.183 537.973465 test 7755535
## 4386 1251.902 1578.183 275.970433 test 7755535
## 4387 1251.902 1578.183 1443.987328 test 7755535
## 4388 1251.902 1578.183 893.894571 test 7755535
## 4389 1251.902 1578.183 660.141240 test 7755535
## 4390 1251.902 1578.183 1117.504648 test 7755535
## 4391 1251.902 1578.183 1313.916038 test 7755535
## 4392 1251.902 1578.183 818.687242 test 7755535
## 4393 1251.902 1578.183 785.567970 test 7755535
## 4394 1251.902 1578.183 484.508934 test 7755535
## 4395 1251.902 1578.183 735.359000 test 7755535
## 4396 1251.902 1578.183 553.375623 test 7755535
## 4397 1251.902 1578.183 699.003088 test 7755535
## 4398 1251.902 1578.183 580.279759 test 7755535
## 4399 1251.902 1578.183 402.569474 test 7755535
## 4400 1251.902 1578.183 404.556957 test 7755535
## 4401 1251.902 1578.183 437.917864 test 7755535
## 4402 1251.902 1578.183 602.806130 test 7755535
## 4403 1251.902 1578.183 384.834097 test 7755535
## 4404 1251.902 1578.183 602.781051 test 7755535
## 4405 1251.902 1578.183 519.563535 test 7755535
## 4406 1251.902 1578.183 396.157004 test 7755535
## 4407 1251.902 1578.183 453.986920 test 7755535
## 4408 1251.902 1578.183 542.842687 test 7755535
## 4409 1251.902 1578.183 538.009404 test 7755535
## 4410 1251.902 1578.183 468.448623 test 7755535
## 4411 1251.902 1578.183 282.067308 test 7755535
## 4412 1251.902 1578.183 361.085446 test 7755535
## 4413 1251.902 1578.183 439.646453 test 7755535
## 4414 1251.902 1578.183 517.528316 test 7755535
## 4415 1251.902 1578.183 631.421707 test 7755535
## 4416 1251.902 1578.183 588.187682 test 7755535
## 4417 1251.902 1578.183 467.103854 test 7755535
## 4418 1251.902 1578.183 643.649388 test 7755535
## 4419 1251.902 1578.183 742.961535 test 7755535
## 4420 1251.902 1578.183 489.245469 test 7755535
## 4421 1251.902 1578.183 588.897181 test 7755535
## 4422 1251.902 1578.183 803.856391 test 7755535
## 4423 1251.902 1578.183 673.821924 test 7755535
## 4424 1251.902 1578.183 565.335847 test 7755535
## 4425 1251.902 1578.183 699.314318 test 7755535
## 4426 1251.902 1578.183 609.523737 test 7755535
## 4427 1251.902 1578.183 649.730024 test 7755535
## 4428 1251.902 1578.183 450.189649 test 7755535
## 4429 1251.902 1578.183 534.969432 test 7755535
## 4430 1251.902 1578.183 813.871732 test 7755535
## 4431 1251.902 1578.183 394.533952 test 7755535
## 4432 1251.902 1578.183 375.924168 test 7755535
## 4433 1251.902 1578.183 397.870399 test 7755535
## 4434 1251.902 1578.183 464.315410 test 7755535
## 4435 1251.902 1578.183 400.363340 test 7755535
## 4436 1251.902 1578.183 336.216285 test 7755535
## 4437 1251.902 1578.183 435.885997 test 7755535
## 4438 1251.902 1578.183 480.476041 test 7755535
## 4439 1251.902 1578.183 761.136519 test 7755535
## 4440 1251.902 1578.183 667.500018 test 7755535
## 4441 1251.902 1578.183 976.349690 test 7755535
## 4442 1251.902 1578.183 1115.038485 test 7755535
## 4443 1251.902 1578.183 1182.270569 test 7755535
## 4444 1251.902 1578.183 705.301052 test 7755535
## 4445 1251.902 1578.183 34.880492 test 7755535
## 4446 1251.902 1578.183 692.684161 test 7755535
## 4447 1251.902 1578.183 80.774489 test 7755535
## 4448 1251.902 1578.183 35.930463 test 7755535
## 4449 1251.902 1578.183 583.364260 test 7755535
## 4450 1251.902 1578.183 566.759772 test 7755535
## 4451 1251.902 1578.183 510.842034 test 7755535
## 4452 1251.902 1578.183 206.355000 test 7755535
## 4453 1251.902 1578.183 186.596107 test 7755535
## 4454 1251.902 1578.183 507.852192 test 7755535
## 4455 1251.902 1578.183 428.717463 test 7755535
## 4456 1251.902 1578.183 588.453807 test 7755535
## 4457 1251.902 1578.183 279.703821 test 7755535
## 4458 1251.902 1578.183 299.524908 test 7755535
## 4459 1251.902 1578.183 454.870749 test 7755535
## 4460 1251.902 1578.183 634.113919 test 7755535
## 4461 1251.902 1578.183 628.764500 test 7755535
## 4462 1251.902 1578.183 717.343882 test 7755535
## 4463 1251.902 1578.183 529.276346 test 7755535
## 4464 1251.902 1578.183 484.480262 test 7755535
## 4465 1251.902 1578.183 571.380807 test 7755535
## 4466 1251.902 1578.183 479.008919 test 7755535
## 4467 1251.902 1578.183 635.019156 test 7755535
## 4468 1251.902 1578.183 519.345938 test 7755535
## 4469 1251.902 1578.183 717.927848 test 7755535
## 4470 1251.902 1578.183 422.677246 test 7755535
## 4471 1251.902 1578.183 931.391407 test 7755535
## 4472 1251.902 1578.183 412.169796 test 7755535
## 4473 1251.902 1578.183 634.365579 test 7755535
## 4474 1251.902 1578.183 685.049354 test 7755535
## 4475 1251.902 1578.183 530.662995 test 7755535
## 4476 1251.902 1578.183 894.569501 test 7755535
## 4477 1251.902 1578.183 586.419574 test 7755535
## 4478 1251.902 1578.183 852.176024 test 7755535
## 4479 1251.902 1578.183 487.690919 test 7755535
## 4480 1251.902 1578.183 564.954543 test 7755535
## 4481 1251.902 1578.183 230.178997 test 7755535
## 4482 1251.902 1578.183 331.027868 test 7755535
## 4483 1251.902 1578.183 434.292639 test 7755535
## 4484 1251.902 1578.183 467.626950 test 7755535
## 4485 1251.902 1578.183 320.266375 test 7755535
## 4486 1251.902 1578.183 198.267996 test 7755535
## 4487 1251.902 1578.183 529.452508 test 7755535
## 4488 1251.902 1578.183 408.219425 test 7755535
## 4489 1251.902 1578.183 438.601382 test 7755535
## 4490 1251.902 1578.183 551.114760 test 7755535
## 4491 1251.902 1578.183 459.326241 test 7755535
## 4492 1251.902 1578.183 442.153048 test 7755535
## 4493 1251.902 1578.183 467.969045 test 7755535
## 4494 1251.902 1578.183 354.927732 test 7755535
## 4495 1251.902 1578.183 366.788036 test 7755535
## 4496 1251.902 1578.183 242.451989 test 7755535
## 4497 1251.902 1578.183 258.162174 test 7755535
## 4498 1251.902 1578.183 454.885657 test 7755535
## 4499 1251.902 1578.183 320.654872 test 7755535
## 4500 1251.902 1578.183 329.276982 test 7755535
## 4501 1251.902 1578.183 536.835449 test 7755535
## 4502 1251.902 1578.183 462.516833 test 7755535
## 4503 1251.902 1578.183 358.739292 test 7755535
## 4504 1251.902 1578.183 383.983194 test 7755535
## 4505 1251.902 1578.183 334.429976 test 7755535
## 4506 1251.902 1578.183 341.870250 test 7755535
## 4507 1251.902 1578.183 474.554630 test 7755535
## 4508 1251.902 1578.183 481.025239 test 7755535
## 4509 1251.902 1578.183 317.209463 test 7755535
## 4510 1251.902 1578.183 561.301985 test 7755535
## 4511 1251.902 1578.183 221.758028 test 7755535
## 4512 1251.902 1578.183 271.150017 test 7755535
## 4513 1251.902 1578.183 524.214594 test 7755535
## 4514 1251.902 1578.183 662.110489 test 7755535
## 4515 1251.902 1578.183 502.117278 test 7755535
## 4516 1251.902 1578.183 392.040113 test 7755535
## 4517 1251.902 1578.183 589.889439 test 7755535
## 4518 1251.902 1578.183 602.823316 test 7755535
## 4519 1251.902 1578.183 467.864120 test 7755535
## 4520 1251.902 1578.183 328.989948 test 7755535
## 4521 1251.902 1578.183 490.482587 test 7755535
## 4522 1251.902 1578.183 672.231603 test 7755535
## 4523 1251.902 1578.183 623.102475 test 7755535
## 4524 1251.902 1578.183 744.575234 test 7755535
## 4525 1251.902 1578.183 694.411686 test 7755535
## 4526 1251.902 1578.183 600.714793 test 7755535
## 4527 1251.902 1578.183 703.330602 test 7755535
## 4528 1251.902 1578.183 514.420522 test 7755535
## 4529 1251.902 1578.183 581.008752 test 7755535
## 4530 1251.902 1578.183 662.977443 test 7755535
## 4531 1251.902 1578.183 381.122874 test 7755535
## 4532 1251.902 1578.183 477.903749 test 7755535
## 4533 1251.902 1578.183 612.469462 test 7755535
## 4534 1251.902 1578.183 532.760055 test 7755535
## 4535 1251.902 1578.183 881.892367 test 7755535
## 4536 1251.902 1578.183 818.496971 test 7755535
## 4537 1251.902 1578.183 822.876144 test 7755535
## 4538 1251.902 1578.183 665.814769 test 7755535
## 4539 1251.902 1578.183 1054.848036 test 7755535
## 4540 1251.902 1578.183 822.763449 test 7755535
## 4541 1251.902 1578.183 530.828503 test 7755535
## 4542 1251.902 1578.183 492.100982 test 7755535
## 4543 1251.902 1578.183 1019.290127 test 7755535
## 4544 1251.902 1578.183 1189.049731 test 7755535
## 4545 1251.902 1578.183 517.403416 test 7755535
## 4546 1251.902 1578.183 777.623135 test 7755535
## 4547 1251.902 1578.183 720.405038 test 7755535
## 4548 1251.902 1578.183 489.003075 test 7755535
## 4549 1251.902 1578.183 1247.906134 test 7755535
## 4550 1251.902 1578.183 865.832418 test 7755535
## 4551 1251.902 1578.183 1007.153476 test 7755535
## 4552 1251.902 1578.183 797.964397 test 7755535
## 4553 1251.902 1578.183 1419.209362 test 7755535
## 4554 1251.902 1578.183 813.219688 test 7755535
## 4555 1251.902 1578.183 1181.931726 test 7755535
## 4556 1251.902 1578.183 712.215769 test 7755535
## 4557 1251.902 1578.183 725.724374 test 7755535
## 4558 1251.902 1578.183 746.226866 test 7755535
## 4559 1251.902 1578.183 1165.362988 test 7755535
## 4560 1251.902 1578.183 1188.573424 test 7755535
## 4561 1251.902 1578.183 826.442455 test 7755535
## 4562 1251.902 1578.183 925.128579 test 7755535
## 4563 1251.902 1578.183 967.630493 test 7755535
## 4564 1251.902 1578.183 845.120025 test 7755535
## 4565 1251.902 1578.183 706.255692 test 7755535
## 4566 1251.902 1578.183 996.349301 test 7755535
## 4567 1251.902 1578.183 954.243941 test 7755535
## 4568 1251.902 1578.183 677.512968 test 7755535
## 4569 1251.902 1578.183 1144.462066 test 7755535
## 4570 1251.902 1578.183 1068.763295 test 7755535
## 4571 1251.902 1578.183 886.093052 test 7755535
## 4572 1251.902 1578.183 1060.184776 test 7755535
## 4573 1251.902 1578.183 1162.248280 test 7755535
## 4574 1251.902 1578.183 1194.352702 test 7755535
## 4575 1251.902 1578.183 1193.702968 test 7755535
## 4576 1251.902 1578.183 936.844067 test 7755535
## 4577 1251.902 1578.183 797.238383 test 7755535
## 4578 1251.902 1578.183 843.695667 test 7755535
## 4579 1251.902 1578.183 663.236737 test 7755535
## 4580 1251.902 1578.183 528.026728 test 7755535
## 4581 1251.902 1578.183 1279.844782 test 7755535
## 4582 1251.902 1578.183 1500.091416 test 7755535
## 4583 1251.902 1578.183 1645.117949 test 7755535
## 4584 1251.902 1578.183 1355.369963 test 7755535
## 4585 1251.902 1578.183 1441.421044 test 7755535
## 4586 1251.902 1578.183 1327.785872 test 7755535
## 4587 1251.902 1578.183 1157.619675 test 7755535
## 4588 1251.902 1578.183 1105.395480 test 7755535
## 4589 1251.902 1578.183 1078.386881 test 7755535
## 4590 1251.902 1578.183 2072.646353 test 7755535
## 4591 1251.902 1578.183 1000.895538 test 7755535
## 4592 1251.902 1578.183 1197.079472 test 7755535
## 4593 1251.902 1578.183 1438.034066 test 7755535
## 4594 1251.902 1578.183 1465.500997 test 7755535
## 4595 1251.902 1578.183 1162.020334 test 7755535
## 4596 1251.902 1578.183 1270.679003 test 7755535
## 4597 1251.902 1578.183 1301.922001 test 7755535
## 4598 1251.902 1578.183 1064.250092 test 7755535
## 4599 1251.902 1578.183 1146.513237 test 7755535
## 4600 1251.902 1578.183 891.860973 test 7755535
## 4601 1251.902 1578.183 952.119191 test 7755535
## 4602 1251.902 1578.183 1122.360887 test 7755535
## 4603 1251.902 1578.183 1060.256509 test 7755535
## 4604 1251.902 1578.183 912.165135 test 7755535
## 4605 1251.902 1578.183 1268.136400 test 7755535
## 4606 1251.902 1578.183 1044.534188 test 7755535
## 4607 1251.902 1578.183 1159.337191 test 7755535
## 4608 1251.902 1578.183 1277.689157 test 7755535
## 4609 1251.902 1578.183 1275.468288 test 7755535
## 4610 1251.902 1578.183 1275.518607 test 7755535
## 4611 1251.902 1578.183 1389.801033 test 7755535
## 4612 1251.902 1578.183 1380.007460 test 7755535
## 4613 1251.902 1578.183 1379.702153 test 7755535
## 4614 1251.902 1578.183 1354.129458 test 7755535
## 4615 1251.902 1578.183 1217.909579 test 7755535
## 4616 1251.902 1578.183 1194.329632 test 7755535
## 4617 1251.902 1578.183 1064.173933 test 7755535
## 4618 1251.902 1578.183 1042.307080 test 7755535
## 4619 1251.902 1578.183 980.759608 test 7755535
## 4620 1251.902 1578.183 1921.676754 test 7755535
## 4621 1251.902 1578.183 1629.815632 test 7755535
## 4622 1251.902 1578.183 1951.301204 test 7755535
## 4623 1251.902 1578.183 2341.711370 test 7755535
## 4624 1251.902 1578.183 2031.287361 test 7755535
## 4625 1251.902 1578.183 1395.860845 test 7755535
## 4626 1251.902 1578.183 1613.805150 test 7755535
## 4627 1251.902 1578.183 1251.898990 test 7755535
## 4628 1251.902 1578.183 1576.103997 test 7755535
## 4629 1251.902 1578.183 740.769816 test 7755535
## 4630 1251.902 1578.183 1084.544188 test 7755535
## 4631 1251.902 1578.183 1611.993838 test 7755535
## 4632 1251.902 1578.183 1348.931765 test 7755535
## 4633 1251.902 1578.183 1792.848729 test 7755535
## 4634 1251.902 1578.183 1398.897587 test 7755535
## 4635 1251.902 1578.183 781.692580 test 7755535
## 4636 1251.902 1578.183 1168.504348 test 7755535
## 4637 1251.902 1578.183 716.732814 test 7755535
## 4638 1251.902 1578.183 686.431368 test 7755535
## 4639 1251.902 1578.183 573.243245 test 7755535
## 4640 1251.902 1578.183 564.518048 test 7755535
## 4641 1251.902 1578.183 847.864311 test 7755535
## 4642 1251.902 1578.183 827.146517 test 7755535
## 4643 1251.902 1578.183 932.118861 test 7755535
## 4644 1251.902 1578.183 846.362906 test 7755535
## 4645 1251.902 1578.183 750.142599 test 7755535
## 4646 1251.902 1578.183 651.433272 test 7755535
## 4647 1251.902 1578.183 750.532313 test 7755535
## 4648 1251.902 1578.183 741.851692 test 7755535
## 4649 1251.902 1578.183 742.328645 test 7755535
## 4650 1251.902 1578.183 784.033975 test 7755535
## 4651 1251.902 1578.183 838.220850 test 7755535
## 4652 1251.902 1578.183 806.266795 test 7755535
## 4653 1251.902 1578.183 755.856701 test 7755535
## 4654 1251.902 1578.183 744.656126 test 7755535
## 4655 1251.902 1578.183 740.358663 test 7755535
## 4656 1251.902 1578.183 743.942339 test 7755535
## 4657 1251.902 1578.183 733.045508 test 7755535
## 4658 1251.902 1578.183 741.521512 test 7755535
## 4659 1251.902 1578.183 844.515912 test 7755535
## 4660 1251.902 1578.183 847.691977 test 7755535
## 4661 1251.902 1578.183 851.097033 test 7755535
## 4662 1251.902 1578.183 753.385791 test 7755535
## 4663 1251.902 1578.183 756.196207 test 7755535
## 4664 1251.902 1578.183 749.893474 test 7755535
## 4665 1251.902 1578.183 750.494580 test 7755535
## 4666 1251.902 1578.183 853.575155 test 7755535
## 4667 1251.902 1578.183 644.520481 test 7755535
## 4668 1251.902 1578.183 648.071561 test 7755535
## 4669 1251.902 1578.183 668.136717 test 7755535
## 4670 1251.902 1578.183 432.085785 test 7755535
## 4671 1251.902 1578.183 327.788389 test 7755535
## 4672 1251.902 1578.183 619.041526 test 7755535
## 4673 1251.902 1578.183 1143.632050 test 7755535
## 4674 1251.902 1578.183 757.877150 test 7755535
## 4675 1251.902 1578.183 810.885643 test 7755535
## 4676 1251.902 1578.183 603.036418 test 7755535
## 4677 1251.902 1578.183 373.459207 test 7755535
## 4678 1251.902 1578.183 637.377582 test 7755535
## 4679 1251.902 1578.183 636.606631 test 7755535
## 4680 1251.902 1578.183 822.010691 test 7755535
## 4681 1251.902 1578.183 1084.752625 test 7755535
## 4682 1251.902 1578.183 1030.592945 test 7755535
## 4683 1251.902 1578.183 788.795049 test 7755535
## 4684 1251.902 1578.183 1120.319247 test 7755535
## 4685 1251.902 1578.183 1073.385242 test 7755535
## 4686 1251.902 1578.183 654.319681 test 7755535
## 4687 1251.902 1578.183 555.132807 test 7755535
## 4688 1251.902 1578.183 735.686395 test 7755535
## 4689 1251.902 1578.183 536.554406 test 7755535
## 4690 1251.902 1578.183 425.945550 test 7755535
## 4691 1251.902 1578.183 476.277165 test 7755535
## 4692 1251.902 1578.183 400.837110 test 7755535
## 4693 1251.902 1578.183 545.973434 test 7755535
## 4694 1251.902 1578.183 347.515292 test 7755535
## 4695 1251.902 1578.183 472.726871 test 7755535
## 4696 1251.902 1578.183 374.918696 test 7755535
## 4697 1251.902 1578.183 509.689338 test 7755535
## 4698 1251.902 1578.183 580.409112 test 7755535
## 4699 1251.902 1578.183 524.346836 test 7755535
## 4700 1251.902 1578.183 419.678006 test 7755535
## 4701 1251.902 1578.183 314.279535 test 7755535
## 4702 1251.902 1578.183 262.059158 test 7755535
## 4703 1251.902 1578.183 474.076935 test 7755535
## 4704 1251.902 1578.183 638.625072 test 7755535
## 4705 1251.902 1578.183 507.423911 test 7755535
## 4706 1251.902 1578.183 473.116592 test 7755535
## 4707 1251.902 1578.183 699.701052 test 7755535
## 4708 1251.902 1578.183 357.068546 test 7755535
## 4709 1251.902 1578.183 420.629628 test 7755535
## 4710 1251.902 1578.183 453.019930 test 7755535
## 4711 1251.902 1578.183 410.073090 test 7755535
## 4712 1251.902 1578.183 627.430552 test 7755535
## 4713 1251.902 1578.183 644.287416 test 7755535
## 4714 1251.902 1578.183 710.748029 test 7755535
## 4715 1251.902 1578.183 620.691942 test 7755535
## 4716 1251.902 1578.183 570.071912 test 7755535
## 4717 1251.902 1578.183 841.256436 test 7755535
## 4718 1251.902 1578.183 535.621030 test 7755535
## 4719 1251.902 1578.183 513.702930 test 7755535
## 4720 1251.902 1578.183 549.875570 test 7755535
## 4721 1251.902 1578.183 471.234522 test 7755535
## 4722 1251.902 1578.183 476.446492 test 7755535
## 4723 1251.902 1578.183 669.495668 test 7755535
## 4724 1251.902 1578.183 480.451494 test 7755535
## 4725 1251.902 1578.183 363.624013 test 7755535
## 4726 1251.902 1578.183 454.496111 test 7755535
## 4727 1251.902 1578.183 704.177897 test 7755535
## 4728 1251.902 1578.183 607.030586 test 7755535
## 4729 1251.902 1578.183 585.888227 test 7755535
## 4730 1251.902 1578.183 929.334971 test 7755535
## 4731 1251.902 1578.183 1066.894313 test 7755535
## 4732 1251.902 1578.183 631.646667 test 7755535
## 4733 1251.902 1578.183 915.845254 test 7755535
## 4734 1251.902 1578.183 457.472630 test 7755535
## 4735 1251.902 1578.183 607.470950 test 7755535
## 4736 1251.902 1578.183 544.920920 test 7755535
## 4737 1251.902 1578.183 580.347422 test 7755535
## 4738 1251.902 1578.183 594.245032 test 7755535
## 4739 1251.902 1578.183 502.209795 test 7755535
## 4740 1251.902 1578.183 527.925610 test 7755535
## 4741 1251.902 1578.183 398.140826 test 7755535
## 4742 1251.902 1578.183 259.178854 test 7755535
## 4743 1251.902 1578.183 331.804166 test 7755535
## 4744 1251.902 1578.183 515.303048 test 7755535
## 4745 1251.902 1578.183 564.497494 test 7755535
## 4746 1251.902 1578.183 731.785187 test 7755535
## 4747 1251.902 1578.183 429.526323 test 7755535
## 4748 1251.902 1578.183 397.910374 test 7755535
## 4749 1251.902 1578.183 317.562443 test 7755535
## 4750 1251.902 1578.183 426.342765 test 7755535
## 4751 1251.902 1578.183 317.732489 test 7755535
## 4752 1251.902 1578.183 631.062590 test 7755535
## 4753 1251.902 1578.183 532.628286 test 7755535
## 4754 1251.902 1578.183 603.142521 test 7755535
## 4755 1251.902 1578.183 710.579219 test 7755535
## 4756 1251.902 1578.183 861.091582 test 7755535
## 4757 1251.902 1578.183 749.847072 test 7755535
## 4758 1251.902 1578.183 635.918797 test 7755535
## 4759 1251.902 1578.183 521.413847 test 7755535
## 4760 1251.902 1578.183 392.465270 test 7755535
## 4761 1251.902 1578.183 446.012648 test 7755535
## 4762 1251.902 1578.183 245.418775 test 7755535
## 4763 1251.902 1578.183 448.961943 test 7755535
## 4764 1251.902 1578.183 355.239339 test 7755535
## 4765 1251.902 1578.183 319.908300 test 7755535
## 4766 1251.902 1578.183 244.207897 test 7755535
## 4767 1251.902 1578.183 334.250257 test 7755535
## 4768 1251.902 1578.183 400.315977 test 7755535
## 4769 1251.902 1578.183 325.750503 test 7755535
## 4770 1251.902 1578.183 285.155116 test 7755535
## 4771 1251.902 1578.183 218.095725 test 7755535
## 4772 1251.902 1578.183 317.922076 test 7755535
## 4773 1251.902 1578.183 360.294613 test 7755535
## 4774 1251.902 1578.183 387.713292 test 7755535
## 4775 1251.902 1578.183 325.476450 test 7755535
## 4776 1251.902 1578.183 346.796002 test 7755535
## 4777 1251.902 1578.183 521.559776 test 7755535
## 4778 1251.902 1578.183 394.915842 test 7755535
## 4779 1251.902 1578.183 334.399516 test 7755535
## 4780 1251.902 1578.183 402.446531 test 7755535
## 4781 1251.902 1578.183 481.041959 test 7755535
## 4782 1251.902 1578.183 322.679775 test 7755535
## 4783 1251.902 1578.183 645.118495 test 7755535
## 4784 1251.902 1578.183 603.890198 test 7755535
## 4785 1251.902 1578.183 380.736215 test 7755535
## 4786 1251.902 1578.183 355.993585 test 7755535
## 4787 1251.902 1578.183 432.321872 test 7755535
## 4788 1251.902 1578.183 562.674741 test 7755535
## 4789 1251.902 1578.183 810.012790 test 7755535
## 4790 1251.902 1578.183 480.469651 test 7755535
## 4791 1251.902 1578.183 385.614887 test 7755535
## 4792 1251.902 1578.183 512.996378 test 7755535
## 4793 1251.902 1578.183 481.827462 test 7755535
## 4794 1251.902 1578.183 479.280665 test 7755535
## 4795 1251.902 1578.183 455.760967 test 7755535
## 4796 1251.902 1578.183 615.653051 test 7755535
## 4797 1251.902 1578.183 441.008003 test 7755535
## 4798 1251.902 1578.183 388.657812 test 7755535
## 4799 1251.902 1578.183 508.627419 test 7755535
## 4800 1251.902 1578.183 1017.708328 test 7755535
## 4801 1251.902 1578.183 571.859636 test 7755535
## 4802 1251.902 1578.183 720.045504 test 7755535
## 4803 1251.902 1578.183 574.119472 test 7755535
## 4804 1251.902 1578.183 525.181764 test 7755535
## 4805 1251.902 1578.183 707.812438 test 7755535
## 4806 1251.902 1578.183 593.229549 test 7755535
## 4807 1251.902 1578.183 369.234841 test 7755535
## 4808 1251.902 1578.183 708.199215 test 7755535
## 4809 1251.902 1578.183 612.633947 test 7755535
## 4810 1251.902 1578.183 641.341977 test 7755535
## 4811 1251.902 1578.183 741.233876 test 7755535
## 4812 1251.902 1578.183 912.341197 test 7755535
## 4813 1251.902 1578.183 495.319706 test 7755535
## 4814 1251.902 1578.183 505.287723 test 7755535
## 4815 1251.902 1578.183 526.620666 test 7755535
## 4816 1251.902 1578.183 535.420513 test 7755535
## 4817 1251.902 1578.183 827.606784 test 7755535
## 4818 1251.902 1578.183 761.563799 test 7755535
## 4819 1251.902 1578.183 677.328545 test 7755535
## 4820 1251.902 1578.183 656.976879 test 7755535
## 4821 1251.902 1578.183 1209.231585 test 7755535
## 4822 1251.902 1578.183 1447.002603 test 7755535
## 4823 1251.902 1578.183 697.273468 test 7755535
## 4824 1251.902 1578.183 631.650996 test 7755535
## 4825 1251.902 1578.183 669.649866 test 7755535
## 4826 1251.902 1578.183 962.112788 test 7755535
## 4827 1251.902 1578.183 1051.384090 test 7755535
## 4828 1251.902 1578.183 995.373066 test 7755535
## 4829 1251.902 1578.183 933.276080 test 7755535
## 4830 1251.902 1578.183 989.737132 test 7755535
## 4831 1251.902 1578.183 1024.597701 test 7755535
## 4832 1251.902 1578.183 704.003211 test 7755535
## 4833 1251.902 1578.183 706.114405 test 7755535
## 4834 1251.902 1578.183 986.306250 test 7755535
## 4835 1251.902 1578.183 1211.371750 test 7755535
## 4836 1251.902 1578.183 904.225930 test 7755535
## 4837 1251.902 1578.183 1008.041487 test 7755535
## 4838 1251.902 1578.183 1037.705227 test 7755535
## 4839 1251.902 1578.183 696.872381 test 7755535
## 4840 1251.902 1578.183 1201.121051 test 7755535
## 4841 1251.902 1578.183 696.149440 test 7755535
## 4842 1251.902 1578.183 842.870973 test 7755535
## 4843 1251.902 1578.183 811.550234 test 7755535
## 4844 1251.902 1578.183 1372.730271 test 7755535
## 4845 1251.902 1578.183 878.435811 test 7755535
## 4846 1251.902 1578.183 966.177963 test 7755535
## 4847 1251.902 1578.183 963.837653 test 7755535
## 4848 1251.902 1578.183 865.194079 test 7755535
## 4849 1251.902 1578.183 998.815804 test 7755535
## 4850 1251.902 1578.183 758.998764 test 7755535
## 4851 1251.902 1578.183 771.010084 test 7755535
## 4852 1251.902 1578.183 1348.486099 test 7755535
## 4853 1251.902 1578.183 727.882521 test 7755535
## 4854 1251.902 1578.183 848.093670 test 7755535
## 4855 1251.902 1578.183 744.239624 test 7755535
## 4856 1251.902 1578.183 1545.533668 test 7755535
## 4857 1251.902 1578.183 740.404694 test 7755535
## 4858 1251.902 1578.183 906.167674 test 7755535
## 4859 1251.902 1578.183 676.493746 test 7755535
## 4860 1251.902 1578.183 430.260908 test 7755535
## 4861 1251.902 1578.183 1580.887561 test 7755535
## 4862 1251.902 1578.183 1227.748907 test 7755535
## 4863 1251.902 1578.183 1486.595433 test 7755535
## 4864 1251.902 1578.183 976.620037 test 7755535
## 4865 1251.902 1578.183 1110.278525 test 7755535
## 4866 1251.902 1578.183 1573.305822 test 7755535
## 4867 1251.902 1578.183 1496.471163 test 7755535
## 4868 1251.902 1578.183 1112.793775 test 7755535
## 4869 1251.902 1578.183 1146.628314 test 7755535
## 4870 1251.902 1578.183 1428.792962 test 7755535
## 4871 1251.902 1578.183 1090.451657 test 7755535
## 4872 1251.902 1578.183 1215.170253 test 7755535
## 4873 1251.902 1578.183 1182.712475 test 7755535
## 4874 1251.902 1578.183 1188.284204 test 7755535
## 4875 1251.902 1578.183 1097.472298 test 7755535
## 4876 1251.902 1578.183 798.087462 test 7755535
## 4877 1251.902 1578.183 1102.282566 test 7755535
## 4878 1251.902 1578.183 898.924473 test 7755535
## 4879 1251.902 1578.183 1018.658510 test 7755535
## 4880 1251.902 1578.183 1268.092755 test 7755535
## 4881 1251.902 1578.183 1047.251393 test 7755535
## 4882 1251.902 1578.183 1164.504644 test 7755535
## 4883 1251.902 1578.183 1163.053442 test 7755535
## 4884 1251.902 1578.183 1162.928034 test 7755535
## 4885 1251.902 1578.183 1160.899295 test 7755535
## 4886 1251.902 1578.183 1149.897703 test 7755535
## 4887 1251.902 1578.183 1274.997602 test 7755535
## 4888 1251.902 1578.183 1273.375548 test 7755535
## 4889 1251.902 1578.183 1146.059807 test 7755535
## 4890 1251.902 1578.183 1043.903350 test 7755535
## 4891 1251.902 1578.183 930.424597 test 7755535
## 4892 1251.902 1578.183 1112.308349 test 7755535
## 4893 1251.902 1578.183 945.484475 test 7755535
## 4894 1251.902 1578.183 901.447690 test 7755535
## 4895 1251.902 1578.183 941.687891 test 7755535
## 4896 1251.902 1578.183 695.780283 test 7755535
## 4897 1251.902 1578.183 1224.554517 test 7755535
## 4898 1251.902 1578.183 1830.458243 test 7755535
## 4899 1251.902 1578.183 1358.788510 test 7755535
## 4900 1251.902 1578.183 1206.542952 test 7755535
## 4901 1251.902 1578.183 739.925599 test 7755535
## 4902 1251.902 1578.183 740.805052 test 7755535
## 4903 1251.902 1578.183 740.575734 test 7755535
## 4904 1251.902 1578.183 1152.009992 test 7755535
## 4905 1251.902 1578.183 1450.987309 test 7755535
## 4906 1251.902 1578.183 1733.732127 test 7755535
## 4907 1251.902 1578.183 912.408656 test 7755535
## 4908 1251.902 1578.183 1036.440760 test 7755535
## 4909 1251.902 1578.183 825.767915 test 7755535
## 4910 1251.902 1578.183 619.304820 test 7755535
## 4911 1251.902 1578.183 504.863307 test 7755535
## 4912 1251.902 1578.183 611.447036 test 7755535
## 4913 1251.902 1578.183 555.119362 test 7755535
## 4914 1251.902 1578.183 862.242936 test 7755535
## 4915 1251.902 1578.183 821.565638 test 7755535
## 4916 1251.902 1578.183 915.177237 test 7755535
## 4917 1251.902 1578.183 652.650249 test 7755535
## 4918 1251.902 1578.183 837.879676 test 7755535
## 4919 1251.902 1578.183 744.061400 test 7755535
## 4920 1251.902 1578.183 743.868824 test 7755535
## 4921 1251.902 1578.183 749.013396 test 7755535
## 4922 1251.902 1578.183 746.951157 test 7755535
## 4923 1251.902 1578.183 753.922244 test 7755535
## 4924 1251.902 1578.183 757.348730 test 7755535
## 4925 1251.902 1578.183 750.135297 test 7755535
## 4926 1251.902 1578.183 843.145268 test 7755535
## 4927 1251.902 1578.183 750.405301 test 7755535
## 4928 1251.902 1578.183 848.494351 test 7755535
## 4929 1251.902 1578.183 748.453998 test 7755535
## 4930 1251.902 1578.183 650.280333 test 7755535
## 4931 1251.902 1578.183 653.593114 test 7755535
## 4932 1251.902 1578.183 656.208119 test 7755535
## 4933 1251.902 1578.183 656.438740 test 7755535
## 4934 1251.902 1578.183 652.681063 test 7755535
## 4935 1251.902 1578.183 620.991141 test 7755535
## 4936 1251.902 1578.183 645.504789 test 7755535
## 4937 1251.902 1578.183 478.765042 test 7755535
## 4938 1251.902 1578.183 715.765111 test 7755535
## 4939 1251.902 1578.183 555.128021 test 7755535
## 4940 1251.902 1578.183 538.219733 test 7755535
## 4941 1251.902 1578.183 719.871474 test 7755535
## 4942 1251.902 1578.183 864.024712 test 7755535
## 4943 1251.902 1578.183 969.583440 test 7755535
## 4944 1251.902 1578.183 623.019585 test 7755535
## 4945 1251.902 1578.183 953.351330 test 7755535
## 4946 1251.902 1578.183 721.908847 test 7755535
## 4947 1251.902 1578.183 897.795277 test 7755535
## 4948 1251.902 1578.183 1187.944358 test 7755535
## 4949 1251.902 1578.183 665.587825 test 7755535
## 4950 1251.902 1578.183 520.054260 test 7755535
## 4951 1251.902 1578.183 1036.411116 test 7755535
## 4952 1251.902 1578.183 1353.293440 test 7755535
## 4953 1251.902 1578.183 1014.759941 test 7755535
## 4954 1251.902 1578.183 815.248622 test 7755535
## 4955 1251.902 1578.183 1132.396877 test 7755535
## 4956 1251.902 1578.183 672.343211 test 7755535
## 4957 1251.902 1578.183 694.514575 test 7755535
## 4958 1251.902 1578.183 487.282585 test 7755535
## 4959 1251.902 1578.183 510.031805 test 7755535
## 4960 1251.902 1578.183 574.888455 test 7755535
## 4961 1251.902 1578.183 692.619591 test 7755535
## 4962 1251.902 1578.183 515.221992 test 7755535
## 4963 1251.902 1578.183 508.068206 test 7755535
## 4964 1251.902 1578.183 497.384972 test 7755535
## 4965 1251.902 1578.183 565.565537 test 7755535
## 4966 1251.902 1578.183 485.248314 test 7755535
## 4967 1251.902 1578.183 514.346822 test 7755535
## 4968 1251.902 1578.183 458.958520 test 7755535
## 4969 1251.902 1578.183 470.535788 test 7755535
## 4970 1251.902 1578.183 640.364268 test 7755535
## 4971 1251.902 1578.183 554.508786 test 7755535
## 4972 1251.902 1578.183 391.708758 test 7755535
## 4973 1251.902 1578.183 272.287892 test 7755535
## 4974 1251.902 1578.183 224.575423 test 7755535
## 4975 1251.902 1578.183 419.876147 test 7755535
## 4976 1251.902 1578.183 237.911510 test 7755535
## 4977 1251.902 1578.183 190.693039 test 7755535
## 4978 1251.902 1578.183 183.850248 test 7755535
## 4979 1251.902 1578.183 323.483595 test 7755535
## 4980 1251.902 1578.183 224.648376 test 7755535
## 4981 1251.902 1578.183 203.608483 test 7755535
## 4982 1251.902 1578.183 297.370734 test 7755535
## 4983 1251.902 1578.183 450.416902 test 7755535
## 4984 1251.902 1578.183 487.698138 test 7755535
## 4985 1251.902 1578.183 578.722171 test 7755535
## 4986 1251.902 1578.183 492.517957 test 7755535
## 4987 1251.902 1578.183 575.854493 test 7755535
## 4988 1251.902 1578.183 503.279630 test 7755535
## 4989 1251.902 1578.183 401.572175 test 7755535
## 4990 1251.902 1578.183 466.535925 test 7755535
## 4991 1251.902 1578.183 540.116764 test 7755535
## 4992 1251.902 1578.183 448.675538 test 7755535
## 4993 1251.902 1578.183 470.761212 test 7755535
## 4994 1251.902 1578.183 751.321250 test 7755535
## 4995 1251.902 1578.183 839.237843 test 7755535
## 4996 1251.902 1578.183 720.930718 test 7755535
## 4997 1251.902 1578.183 942.315277 test 7755535
## 4998 1251.902 1578.183 945.872298 test 7755535
## 4999 1251.902 1578.183 772.874408 test 7755535
## 5000 1251.902 1578.183 577.190675 test 7755535
## 5001 1251.902 1578.183 608.823761 test 7755535
## 5002 1251.902 1578.183 644.240339 test 7755535
## 5003 1251.902 1578.183 603.574058 test 7755535
## 5004 1251.902 1578.183 701.052945 test 7755535
## 5005 1251.902 1578.183 549.689589 test 7755535
## 5006 1251.902 1578.183 832.225637 test 7755535
## 5007 1251.902 1578.183 760.916224 test 7755535
## 5008 1251.902 1578.183 519.729343 test 7755535
## 5009 1251.902 1578.183 627.408516 test 7755535
## 5010 1251.902 1578.183 713.667260 test 7755535
## 5011 1251.902 1578.183 581.856650 test 7755535
## 5012 1251.902 1578.183 374.938085 test 7755535
## 5013 1251.902 1578.183 432.360008 test 7755535
## 5014 1251.902 1578.183 478.610754 test 7755535
## 5015 1251.902 1578.183 252.408306 test 7755535
## 5016 1251.902 1578.183 404.933183 test 7755535
## 5017 1251.902 1578.183 339.997101 test 7755535
## 5018 1251.902 1578.183 404.939854 test 7755535
## 5019 1251.902 1578.183 229.447482 test 7755535
## 5020 1251.902 1578.183 447.911273 test 7755535
## 5021 1251.902 1578.183 612.704698 test 7755535
## 5022 1251.902 1578.183 600.259700 test 7755535
## 5023 1251.902 1578.183 577.590758 test 7755535
## 5024 1251.902 1578.183 396.978090 test 7755535
## 5025 1251.902 1578.183 488.268045 test 7755535
## 5026 1251.902 1578.183 637.700748 test 7755535
## 5027 1251.902 1578.183 627.137351 test 7755535
## 5028 1251.902 1578.183 611.415298 test 7755535
## 5029 1251.902 1578.183 660.968910 test 7755535
## 5030 1251.902 1578.183 638.299089 test 7755535
## 5031 1251.902 1578.183 522.191061 test 7755535
## 5032 1251.902 1578.183 434.068744 test 7755535
## 5033 1251.902 1578.183 460.660503 test 7755535
## 5034 1251.902 1578.183 181.819892 test 7755535
## 5035 1251.902 1578.183 333.984673 test 7755535
## 5036 1251.902 1578.183 297.311258 test 7755535
## 5037 1251.902 1578.183 305.070435 test 7755535
## 5038 1251.902 1578.183 328.196821 test 7755535
## 5039 1251.902 1578.183 429.019497 test 7755535
## 5040 1251.902 1578.183 493.886887 test 7755535
## 5041 1251.902 1578.183 614.908005 test 7755535
## 5042 1251.902 1578.183 735.145721 test 7755535
## 5043 1251.902 1578.183 572.288145 test 7755535
## 5044 1251.902 1578.183 502.599059 test 7755535
## 5045 1251.902 1578.183 378.638872 test 7755535
## 5046 1251.902 1578.183 466.079921 test 7755535
## 5047 1251.902 1578.183 331.532834 test 7755535
## 5048 1251.902 1578.183 133.472475 test 7755535
## 5049 1251.902 1578.183 482.791931 test 7755535
## 5050 1251.902 1578.183 784.909600 test 7755535
## 5051 1251.902 1578.183 282.657131 test 7755535
## 5052 1251.902 1578.183 379.318601 test 7755535
## 5053 1251.902 1578.183 562.885358 test 7755535
## 5054 1251.902 1578.183 383.954573 test 7755535
## 5055 1251.902 1578.183 582.458462 test 7755535
## 5056 1251.902 1578.183 567.695847 test 7755535
## 5057 1251.902 1578.183 600.708736 test 7755535
## 5058 1251.902 1578.183 763.086022 test 7755535
## 5059 1251.902 1578.183 696.519822 test 7755535
## 5060 1251.902 1578.183 468.885218 test 7755535
## 5061 1251.902 1578.183 610.698495 test 7755535
## 5062 1251.902 1578.183 945.639178 test 7755535
## 5063 1251.902 1578.183 654.084767 test 7755535
## 5064 1251.902 1578.183 491.201536 test 7755535
## 5065 1251.902 1578.183 607.887184 test 7755535
## 5066 1251.902 1578.183 478.166533 test 7755535
## 5067 1251.902 1578.183 593.321720 test 7755535
## 5068 1251.902 1578.183 640.756924 test 7755535
## 5069 1251.902 1578.183 599.449842 test 7755535
## 5070 1251.902 1578.183 722.461094 test 7755535
## 5071 1251.902 1578.183 755.311374 test 7755535
## 5072 1251.902 1578.183 713.993303 test 7755535
## 5073 1251.902 1578.183 809.371387 test 7755535
## 5074 1251.902 1578.183 494.889360 test 7755535
## 5075 1251.902 1578.183 660.689710 test 7755535
## 5076 1251.902 1578.183 721.896171 test 7755535
## 5077 1251.902 1578.183 959.165665 test 7755535
## 5078 1251.902 1578.183 542.096995 test 7755535
## 5079 1251.902 1578.183 759.732881 test 7755535
## 5080 1251.902 1578.183 1216.480579 test 7755535
## 5081 1251.902 1578.183 860.105216 test 7755535
## 5082 1251.902 1578.183 754.807626 test 7755535
## 5083 1251.902 1578.183 712.747192 test 7755535
## 5084 1251.902 1578.183 783.823992 test 7755535
## 5085 1251.902 1578.183 1173.729792 test 7755535
## 5086 1251.902 1578.183 867.341501 test 7755535
## 5087 1251.902 1578.183 830.876950 test 7755535
## 5088 1251.902 1578.183 873.712135 test 7755535
## 5089 1251.902 1578.183 838.689034 test 7755535
## 5090 1251.902 1578.183 878.692616 test 7755535
## 5091 1251.902 1578.183 764.067487 test 7755535
## 5092 1251.902 1578.183 852.334811 test 7755535
## 5093 1251.902 1578.183 1110.859120 test 7755535
## 5094 1251.902 1578.183 615.953550 test 7755535
## 5095 1251.902 1578.183 731.877852 test 7755535
## 5096 1251.902 1578.183 1011.291142 test 7755535
## 5097 1251.902 1578.183 889.279755 test 7755535
## 5098 1251.902 1578.183 923.666525 test 7755535
## 5099 1251.902 1578.183 1172.598822 test 7755535
## 5100 1251.902 1578.183 893.505910 test 7755535
## 5101 1251.902 1578.183 1318.122982 test 7755535
## 5102 1251.902 1578.183 790.094224 test 7755535
## 5103 1251.902 1578.183 761.721905 test 7755535
## 5104 1251.902 1578.183 971.342465 test 7755535
## 5105 1251.902 1578.183 846.986316 test 7755535
## 5106 1251.902 1578.183 970.950696 test 7755535
## 5107 1251.902 1578.183 862.057634 test 7755535
## 5108 1251.902 1578.183 731.092760 test 7755535
## 5109 1251.902 1578.183 794.077509 test 7755535
## 5110 1251.902 1578.183 1015.378819 test 7755535
## 5111 1251.902 1578.183 993.480394 test 7755535
## 5112 1251.902 1578.183 835.932626 test 7755535
## 5113 1251.902 1578.183 1164.967572 test 7755535
## 5114 1251.902 1578.183 1186.935358 test 7755535
## 5115 1251.902 1578.183 848.575194 test 7755535
## 5116 1251.902 1578.183 1262.284274 test 7755535
## 5117 1251.902 1578.183 660.655144 test 7755535
## 5118 1251.902 1578.183 363.741129 test 7755535
## 5119 1251.902 1578.183 1011.744561 test 7755535
## 5120 1251.902 1578.183 1068.713978 test 7755535
## 5121 1251.902 1578.183 1010.960587 test 7755535
## 5122 1251.902 1578.183 1103.623306 test 7755535
## 5123 1251.902 1578.183 1285.608974 test 7755535
## 5124 1251.902 1578.183 1149.252768 test 7755535
## 5125 1251.902 1578.183 1354.016878 test 7755535
## 5126 1251.902 1578.183 1365.928361 test 7755535
## 5127 1251.902 1578.183 1230.927401 test 7755535
## 5128 1251.902 1578.183 1097.184586 test 7755535
## 5129 1251.902 1578.183 1472.446477 test 7755535
## 5130 1251.902 1578.183 1268.767819 test 7755535
## 5131 1251.902 1578.183 1137.488321 test 7755535
## 5132 1251.902 1578.183 1215.893024 test 7755535
## 5133 1251.902 1578.183 1080.323036 test 7755535
## 5134 1251.902 1578.183 1167.861456 test 7755535
## 5135 1251.902 1578.183 1184.414976 test 7755535
## 5136 1251.902 1578.183 942.081233 test 7755535
## 5137 1251.902 1578.183 1167.511071 test 7755535
## 5138 1251.902 1578.183 1163.483350 test 7755535
## 5139 1251.902 1578.183 1046.711070 test 7755535
## 5140 1251.902 1578.183 1164.017041 test 7755535
## 5141 1251.902 1578.183 1161.776962 test 7755535
## 5142 1251.902 1578.183 1159.159160 test 7755535
## 5143 1251.902 1578.183 1159.064043 test 7755535
## 5144 1251.902 1578.183 1160.522627 test 7755535
## 5145 1251.902 1578.183 1149.460030 test 7755535
## 5146 1251.902 1578.183 1036.391474 test 7755535
## 5147 1251.902 1578.183 941.964026 test 7755535
## 5148 1251.902 1578.183 1037.369462 test 7755535
## 5149 1251.902 1578.183 1044.016399 test 7755535
## 5150 1251.902 1578.183 812.397785 test 7755535
## 5151 1251.902 1578.183 654.878128 test 7755535
## 5152 1251.902 1578.183 734.150809 test 7755535
## 5153 1251.902 1578.183 759.982870 test 7755535
## 5154 1251.902 1578.183 944.909325 test 7755535
## 5155 1251.902 1578.183 971.562247 test 7755535
## 5156 1251.902 1578.183 743.069876 test 7755535
## 5157 1251.902 1578.183 742.671635 test 7755535
## 5158 1251.902 1578.183 848.168588 test 7755535
## 5159 1251.902 1578.183 699.721486 test 7755535
## 5160 1251.902 1578.183 733.329633 test 7755535
## 5161 1251.902 1578.183 996.559862 test 7755535
## 5162 1251.902 1578.183 1008.584728 test 7755535
## 5163 1251.902 1578.183 742.533938 test 7755535
## 5164 1251.902 1578.183 650.913445 test 7755535
## 5165 1251.902 1578.183 665.426922 test 7755535
## 5166 1251.902 1578.183 547.909239 test 7755535
## 5167 1251.902 1578.183 698.455882 test 7755535
## 5168 1251.902 1578.183 586.417430 test 7755535
## 5169 1251.902 1578.183 720.434175 test 7755535
## 5170 1251.902 1578.183 759.108822 test 7755535
## 5171 1251.902 1578.183 967.269815 test 7755535
## 5172 1251.902 1578.183 823.293668 test 7755535
## 5173 1251.902 1578.183 845.064112 test 7755535
## 5174 1251.902 1578.183 657.656660 test 7755535
## 5175 1251.902 1578.183 653.128772 test 7755535
## 5176 1251.902 1578.183 655.803177 test 7755535
## 5177 1251.902 1578.183 752.199894 test 7755535
## 5178 1251.902 1578.183 754.261210 test 7755535
## 5179 1251.902 1578.183 748.263121 test 7755535
## 5180 1251.902 1578.183 762.195790 test 7755535
## 5181 1251.902 1578.183 743.785215 test 7755535
## 5182 1251.902 1578.183 751.974787 test 7755535
## 5183 1251.902 1578.183 654.459241 test 7755535
## 5184 1251.902 1578.183 652.069840 test 7755535
## 5185 1251.902 1578.183 614.194480 test 7755535
## 5186 1251.902 1578.183 616.464899 test 7755535
## 5187 1251.902 1578.183 607.223196 test 7755535
## 5188 1251.902 1578.183 609.996537 test 7755535
## 5189 1251.902 1578.183 599.433999 test 7755535
## 5190 1251.902 1578.183 526.426665 test 7755535
## 5191 1251.902 1578.183 726.723835 test 7755535
## 5192 1251.902 1578.183 564.366706 test 7755535
## 5193 1251.902 1578.183 478.407181 test 7755535
## 5194 1251.902 1578.183 885.627556 test 7755535
## 5195 1251.902 1578.183 888.123323 test 7755535
## 5196 1251.902 1578.183 562.250126 test 7755535
## 5197 1251.902 1578.183 861.357753 test 7755535
## 5198 1251.902 1578.183 666.638506 test 7755535
## 5199 1251.902 1578.183 898.879787 test 7755535
## 5200 1251.902 1578.183 732.086722 test 7755535
## 5201 1251.902 1578.183 812.238644 test 7755535
## 5202 1251.902 1578.183 915.232945 test 7755535
## 5203 1251.902 1578.183 491.431677 test 7755535
## 5204 1251.902 1578.183 622.999043 test 7755535
## 5205 1251.902 1578.183 1070.584109 test 7755535
## 5206 1251.902 1578.183 667.558571 test 7755535
## 5207 1251.902 1578.183 513.093007 test 7755535
## 5208 1251.902 1578.183 633.397453 test 7755535
## 5209 1251.902 1578.183 694.691172 test 7755535
## 5210 1251.902 1578.183 680.471739 test 7755535
## 5211 1251.902 1578.183 472.904264 test 7755535
## 5212 1251.902 1578.183 558.768595 test 7755535
## 5213 1251.902 1578.183 757.243909 test 7755535
## 5214 1251.902 1578.183 636.918112 test 7755535
## 5215 1251.902 1578.183 632.760433 test 7755535
## 5216 1251.902 1578.183 491.697105 test 7755535
## 5217 1251.902 1578.183 416.016306 test 7755535
## 5218 1251.902 1578.183 566.071494 test 7755535
## 5219 1251.902 1578.183 616.629209 test 7755535
## 5220 1251.902 1578.183 622.430969 test 7755535
## 5221 1251.902 1578.183 569.461365 test 7755535
## 5222 1251.902 1578.183 499.239354 test 7755535
## 5223 1251.902 1578.183 514.607767 test 7755535
## 5224 1251.902 1578.183 481.482672 test 7755535
## 5225 1251.902 1578.183 437.383607 test 7755535
## 5226 1251.902 1578.183 453.807757 test 7755535
## 5227 1251.902 1578.183 551.241368 test 7755535
## 5228 1251.902 1578.183 529.633330 test 7755535
## 5229 1251.902 1578.183 480.924546 test 7755535
## 5230 1251.902 1578.183 466.251526 test 7755535
## 5231 1251.902 1578.183 582.899128 test 7755535
## 5232 1251.902 1578.183 227.284840 test 7755535
## 5233 1251.902 1578.183 128.893888 test 7755535
## 5234 1251.902 1578.183 235.362282 test 7755535
## 5235 1251.902 1578.183 221.214078 test 7755535
## 5236 1251.902 1578.183 370.331912 test 7755535
## 5237 1251.902 1578.183 355.067295 test 7755535
## 5238 1251.902 1578.183 335.544949 test 7755535
## 5239 1251.902 1578.183 352.295936 test 7755535
## 5240 1251.902 1578.183 262.259797 test 7755535
## 5241 1251.902 1578.183 295.829327 test 7755535
## 5242 1251.902 1578.183 336.417129 test 7755535
## 5243 1251.902 1578.183 337.286415 test 7755535
## 5244 1251.902 1578.183 360.762793 test 7755535
## 5245 1251.902 1578.183 440.441161 test 7755535
## 5246 1251.902 1578.183 361.660194 test 7755535
## 5247 1251.902 1578.183 333.605780 test 7755535
## 5248 1251.902 1578.183 370.314582 test 7755535
## 5249 1251.902 1578.183 504.437516 test 7755535
## 5250 1251.902 1578.183 371.760670 test 7755535
## 5251 1251.902 1578.183 414.193199 test 7755535
## 5252 1251.902 1578.183 482.071489 test 7755535
## 5253 1251.902 1578.183 674.189099 test 7755535
## 5254 1251.902 1578.183 753.829748 test 7755535
## 5255 1251.902 1578.183 396.554047 test 7755535
## 5256 1251.902 1578.183 519.030611 test 7755535
## 5257 1251.902 1578.183 702.603927 test 7755535
## 5258 1251.902 1578.183 613.098731 test 7755535
## 5259 1251.902 1578.183 721.441425 test 7755535
## 5260 1251.902 1578.183 400.038569 test 7755535
## 5261 1251.902 1578.183 730.144380 test 7755535
## 5262 1251.902 1578.183 946.509383 test 7755535
## 5263 1251.902 1578.183 714.793924 test 7755535
## 5264 1251.902 1578.183 564.559702 test 7755535
## 5265 1251.902 1578.183 480.250293 test 7755535
## 5266 1251.902 1578.183 500.214148 test 7755535
## 5267 1251.902 1578.183 569.441853 test 7755535
## 5268 1251.902 1578.183 713.653091 test 7755535
## 5269 1251.902 1578.183 285.078299 test 7755535
## 5270 1251.902 1578.183 328.285970 test 7755535
## 5271 1251.902 1578.183 297.707951 test 7755535
## 5272 1251.902 1578.183 511.085607 test 7755535
## 5273 1251.902 1578.183 868.056606 test 7755535
## 5274 1251.902 1578.183 533.618537 test 7755535
## 5275 1251.902 1578.183 360.901231 test 7755535
## 5276 1251.902 1578.183 538.861759 test 7755535
## 5277 1251.902 1578.183 437.115514 test 7755535
## 5278 1251.902 1578.183 393.595384 test 7755535
## 5279 1251.902 1578.183 265.584339 test 7755535
## 5280 1251.902 1578.183 361.852544 test 7755535
## 5281 1251.902 1578.183 687.332578 test 7755535
## 5282 1251.902 1578.183 438.878393 test 7755535
## 5283 1251.902 1578.183 563.878697 test 7755535
## 5284 1251.902 1578.183 584.318277 test 7755535
## 5285 1251.902 1578.183 550.387796 test 7755535
## 5286 1251.902 1578.183 662.887512 test 7755535
## 5287 1251.902 1578.183 559.818704 test 7755535
## 5288 1251.902 1578.183 547.602088 test 7755535
## 5289 1251.902 1578.183 499.044503 test 7755535
## 5290 1251.902 1578.183 472.459258 test 7755535
## 5291 1251.902 1578.183 633.687054 test 7755535
## 5292 1251.902 1578.183 608.101987 test 7755535
## 5293 1251.902 1578.183 790.713517 test 7755535
## 5294 1251.902 1578.183 687.063974 test 7755535
## 5295 1251.902 1578.183 756.559334 test 7755535
## 5296 1251.902 1578.183 711.935610 test 7755535
## 5297 1251.902 1578.183 489.879827 test 7755535
## 5298 1251.902 1578.183 388.964181 test 7755535
## 5299 1251.902 1578.183 553.219687 test 7755535
## 5300 1251.902 1578.183 533.477883 test 7755535
## 5301 1251.902 1578.183 335.764757 test 7755535
## 5302 1251.902 1578.183 402.533043 test 7755535
## 5303 1251.902 1578.183 751.764268 test 7755535
## 5304 1251.902 1578.183 705.975208 test 7755535
## 5305 1251.902 1578.183 495.328660 test 7755535
## 5306 1251.902 1578.183 640.206602 test 7755535
## 5307 1251.902 1578.183 485.401387 test 7755535
## 5308 1251.902 1578.183 840.135134 test 7755535
## 5309 1251.902 1578.183 583.307279 test 7755535
## 5310 1251.902 1578.183 890.384677 test 7755535
## 5311 1251.902 1578.183 592.477549 test 7755535
## 5312 1251.902 1578.183 637.441295 test 7755535
## 5313 1251.902 1578.183 563.620019 test 7755535
## 5314 1251.902 1578.183 458.069414 test 7755535
## 5315 1251.902 1578.183 830.440213 test 7755535
## 5316 1251.902 1578.183 673.358113 test 7755535
## 5317 1251.902 1578.183 738.394308 test 7755535
## 5318 1251.902 1578.183 248.504818 test 7755535
## 5319 1251.902 1578.183 334.518679 test 7755535
## 5320 1251.902 1578.183 486.496946 test 7755535
## 5321 1251.902 1578.183 468.494339 test 7755535
## 5322 1251.902 1578.183 488.706656 test 7755535
## 5323 1251.902 1578.183 618.191238 test 7755535
## 5324 1251.902 1578.183 1011.908524 test 7755535
## 5325 1251.902 1578.183 1228.791162 test 7755535
## 5326 1251.902 1578.183 563.073636 test 7755535
## 5327 1251.902 1578.183 473.664246 test 7755535
## 5328 1251.902 1578.183 743.633469 test 7755535
## 5329 1251.902 1578.183 791.606426 test 7755535
## 5330 1251.902 1578.183 761.772173 test 7755535
## 5331 1251.902 1578.183 603.895919 test 7755535
## 5332 1251.902 1578.183 1119.348599 test 7755535
## 5333 1251.902 1578.183 967.249077 test 7755535
## 5334 1251.902 1578.183 583.456455 test 7755535
## 5335 1251.902 1578.183 699.107930 test 7755535
## 5336 1251.902 1578.183 738.558683 test 7755535
## 5337 1251.902 1578.183 987.945675 test 7755535
## 5338 1251.902 1578.183 635.185431 test 7755535
## 5339 1251.902 1578.183 1134.175473 test 7755535
## 5340 1251.902 1578.183 717.089081 test 7755535
## 5341 1251.902 1578.183 782.867516 test 7755535
## 5342 1251.902 1578.183 878.604739 test 7755535
## 5343 1251.902 1578.183 746.709930 test 7755535
## 5344 1251.902 1578.183 740.963748 test 7755535
## 5345 1251.902 1578.183 996.947954 test 7755535
## 5346 1251.902 1578.183 708.492517 test 7755535
## 5347 1251.902 1578.183 641.151415 test 7755535
## 5348 1251.902 1578.183 790.162288 test 7755535
## 5349 1251.902 1578.183 673.178215 test 7755535
## 5350 1251.902 1578.183 945.691637 test 7755535
## 5351 1251.902 1578.183 853.973773 test 7755535
## 5352 1251.902 1578.183 867.420541 test 7755535
## 5353 1251.902 1578.183 613.985399 test 7755535
## 5354 1251.902 1578.183 950.827154 test 7755535
## 5355 1251.902 1578.183 1433.148629 test 7755535
## 5356 1251.902 1578.183 1485.705159 test 7755535
## 5357 1251.902 1578.183 1254.625865 test 7755535
## 5358 1251.902 1578.183 964.887936 test 7755535
## 5359 1251.902 1578.183 1051.788953 test 7755535
## 5360 1251.902 1578.183 950.989797 test 7755535
## 5361 1251.902 1578.183 998.133579 test 7755535
## 5362 1251.902 1578.183 930.354244 test 7755535
## 5363 1251.902 1578.183 728.546969 test 7755535
## 5364 1251.902 1578.183 1153.898650 test 7755535
## 5365 1251.902 1578.183 1444.215321 test 7755535
## 5366 1251.902 1578.183 1842.872287 test 7755535
## 5367 1251.902 1578.183 1321.531710 test 7755535
## 5368 1251.902 1578.183 1409.034324 test 7755535
## 5369 1251.902 1578.183 1655.000952 test 7755535
## 5370 1251.902 1578.183 1074.757443 test 7755535
## 5371 1251.902 1578.183 1324.656903 test 7755535
## 5372 1251.902 1578.183 894.241604 test 7755535
## 5373 1251.902 1578.183 1043.823398 test 7755535
## 5374 1251.902 1578.183 1048.065844 test 7755535
## 5375 1251.902 1578.183 940.079233 test 7755535
## 5376 1251.902 1578.183 930.942225 test 7755535
## 5377 1251.902 1578.183 933.519130 test 7755535
## 5378 1251.902 1578.183 1165.119056 test 7755535
## 5379 1251.902 1578.183 929.784593 test 7755535
## 5380 1251.902 1578.183 1164.805417 test 7755535
## 5381 1251.902 1578.183 1055.701820 test 7755535
## 5382 1251.902 1578.183 1055.498046 test 7755535
## 5383 1251.902 1578.183 838.179613 test 7755535
## 5384 1251.902 1578.183 1043.360659 test 7755535
## 5385 1251.902 1578.183 836.867357 test 7755535
## 5386 1251.902 1578.183 704.962711 test 7755535
## 5387 1251.902 1578.183 707.113563 test 7755535
## 5388 1251.902 1578.183 733.438405 test 7755535
## 5389 1251.902 1578.183 733.174876 test 7755535
## 5390 1251.902 1578.183 736.687358 test 7755535
## 5391 1251.902 1578.183 785.943354 test 7755535
## 5392 1251.902 1578.183 659.182708 test 7755535
## 5393 1251.902 1578.183 771.862163 test 7755535
## 5394 1251.902 1578.183 526.994899 test 7755535
## 5395 1251.902 1578.183 503.265299 test 7755535
## 5396 1251.902 1578.183 805.827353 test 7755535
## 5397 1251.902 1578.183 737.705764 test 7755535
## 5398 1251.902 1578.183 819.344081 test 7755535
## 5399 1251.902 1578.183 645.405941 test 7755535
## 5400 1251.902 1578.183 689.246351 test 7755535
## 5401 1251.902 1578.183 641.015095 test 7755535
## 5402 1251.902 1578.183 673.107662 test 7755535
## 5403 1251.902 1578.183 674.445379 test 7755535
## 5404 1251.902 1578.183 624.514879 test 7755535
## 5405 1251.902 1578.183 679.079138 test 7755535
## 5406 1251.902 1578.183 485.936006 test 7755535
## 5407 1251.902 1578.183 1038.305700 test 7755535
## 5408 1251.902 1578.183 813.378906 test 7755535
## 5409 1251.902 1578.183 994.192105 test 7755535
## 5410 1251.902 1578.183 660.074670 test 7755535
## 5411 1251.902 1578.183 862.157839 test 7755535
## 5412 1251.902 1578.183 643.621476 test 7755535
## 5413 1251.902 1578.183 641.886809 test 7755535
## 5414 1251.902 1578.183 644.592475 test 7755535
## 5415 1251.902 1578.183 642.036845 test 7755535
## 5416 1251.902 1578.183 645.549405 test 7755535
## 5417 1251.902 1578.183 645.120846 test 7755535
## 5418 1251.902 1578.183 653.556983 test 7755535
## 5419 1251.902 1578.183 619.089537 test 7755535
## 5420 1251.902 1578.183 623.867687 test 7755535
## 5421 1251.902 1578.183 565.346058 test 7755535
## 5422 1251.902 1578.183 624.165525 test 7755535
## 5423 1251.902 1578.183 597.032446 test 7755535
## 5424 1251.902 1578.183 502.134033 test 7755535
## 5425 1251.902 1578.183 644.658318 test 7755535
## 5426 1251.902 1578.183 620.701506 test 7755535
## 5427 1251.902 1578.183 642.392892 test 7755535
## 5428 1251.902 1578.183 631.785274 test 7755535
## 5429 1251.902 1578.183 846.629209 test 7755535
## 5430 1251.902 1578.183 1060.637392 test 7755535
## 5431 1251.902 1578.183 1113.864761 test 7755535
## 5432 1251.902 1578.183 702.096775 test 7755535
## 5433 1251.902 1578.183 422.469053 test 7755535
## 5434 1251.902 1578.183 460.154181 test 7755535
## 5435 1251.902 1578.183 772.998532 test 7755535
## 5436 1251.902 1578.183 348.567990 test 7755535
## 5437 1251.902 1578.183 546.767769 test 7755535
## 5438 1251.902 1578.183 477.806953 test 7755535
## 5439 1251.902 1578.183 723.950605 test 7755535
## 5440 1251.902 1578.183 1235.117333 test 7755535
## 5441 1251.902 1578.183 1100.278901 test 7755535
## 5442 1251.902 1578.183 773.291350 test 7755535
## 5443 1251.902 1578.183 889.914047 test 7755535
## 5444 1251.902 1578.183 940.445534 test 7755535
## 5445 1251.902 1578.183 601.464570 test 7755535
## 5446 1251.902 1578.183 582.486624 test 7755535
## 5447 1251.902 1578.183 672.727300 test 7755535
## 5448 1251.902 1578.183 526.760337 test 7755535
## 5449 1251.902 1578.183 597.181175 test 7755535
## 5450 1251.902 1578.183 627.354467 test 7755535
## 5451 1251.902 1578.183 560.530318 test 7755535
## 5452 1251.902 1578.183 632.999168 test 7755535
## 5453 1251.902 1578.183 449.702712 test 7755535
## 5454 1251.902 1578.183 479.821767 test 7755535
## 5455 1251.902 1578.183 598.778253 test 7755535
## 5456 1251.902 1578.183 466.914450 test 7755535
## 5457 1251.902 1578.183 667.685307 test 7755535
## 5458 1251.902 1578.183 491.187747 test 7755535
## 5459 1251.902 1578.183 535.490767 test 7755535
## 5460 1251.902 1578.183 437.007781 test 7755535
## 5461 1251.902 1578.183 476.795294 test 7755535
## 5462 1251.902 1578.183 461.516326 test 7755535
## 5463 1251.902 1578.183 466.935024 test 7755535
## 5464 1251.902 1578.183 528.693786 test 7755535
## 5465 1251.902 1578.183 562.328459 test 7755535
## 5466 1251.902 1578.183 405.082778 test 7755535
## 5467 1251.902 1578.183 309.224962 test 7755535
## 5468 1251.902 1578.183 205.748314 test 7755535
## 5469 1251.902 1578.183 292.970011 test 7755535
## 5470 1251.902 1578.183 167.971938 test 7755535
## 5471 1251.902 1578.183 323.114380 test 7755535
## 5472 1251.902 1578.183 249.600262 test 7755535
## 5473 1251.902 1578.183 369.199581 test 7755535
## 5474 1251.902 1578.183 463.070112 test 7755535
## 5475 1251.902 1578.183 368.343445 test 7755535
## 5476 1251.902 1578.183 297.344248 test 7755535
## 5477 1251.902 1578.183 356.615765 test 7755535
## 5478 1251.902 1578.183 305.170133 test 7755535
## 5479 1251.902 1578.183 251.207695 test 7755535
## 5480 1251.902 1578.183 266.371465 test 7755535
## 5481 1251.902 1578.183 276.679010 test 7755535
## 5482 1251.902 1578.183 330.125364 test 7755535
## 5483 1251.902 1578.183 423.197267 test 7755535
## 5484 1251.902 1578.183 385.898353 test 7755535
## 5485 1251.902 1578.183 457.393612 test 7755535
## 5486 1251.902 1578.183 416.090759 test 7755535
## 5487 1251.902 1578.183 362.155221 test 7755535
## 5488 1251.902 1578.183 423.777125 test 7755535
## 5489 1251.902 1578.183 516.057263 test 7755535
## 5490 1251.902 1578.183 571.006351 test 7755535
## 5491 1251.902 1578.183 450.016582 test 7755535
## 5492 1251.902 1578.183 684.255065 test 7755535
## 5493 1251.902 1578.183 846.994989 test 7755535
## 5494 1251.902 1578.183 369.944766 test 7755535
## 5495 1251.902 1578.183 51.144460 test 7755535
## 5496 1251.902 1578.183 46.248402 test 7755535
## 5497 1251.902 1578.183 641.793638 test 7755535
## 5498 1251.902 1578.183 477.669206 test 7755535
## 5499 1251.902 1578.183 571.814710 test 7755535
## 5500 1251.902 1578.183 690.560039 test 7755535
## 5501 1251.902 1578.183 284.977983 test 7755535
## 5502 1251.902 1578.183 155.737676 test 7755535
## 5503 1251.902 1578.183 747.331383 test 7755535
## 5504 1251.902 1578.183 541.903456 test 7755535
## 5505 1251.902 1578.183 483.307756 test 7755535
## 5506 1251.902 1578.183 327.546627 test 7755535
## 5507 1251.902 1578.183 415.994635 test 7755535
## 5508 1251.902 1578.183 466.333284 test 7755535
## 5509 1251.902 1578.183 496.064443 test 7755535
## 5510 1251.902 1578.183 662.489296 test 7755535
## 5511 1251.902 1578.183 585.403180 test 7755535
## 5512 1251.902 1578.183 870.837676 test 7755535
## 5513 1251.902 1578.183 401.723689 test 7755535
## 5514 1251.902 1578.183 343.973648 test 7755535
## 5515 1251.902 1578.183 488.668733 test 7755535
## 5516 1251.902 1578.183 372.573818 test 7755535
## 5517 1251.902 1578.183 407.618993 test 7755535
## 5518 1251.902 1578.183 405.063353 test 7755535
## 5519 1251.902 1578.183 419.569789 test 7755535
## 5520 1251.902 1578.183 249.718395 test 7755535
## 5521 1251.902 1578.183 298.812163 test 7755535
## 5522 1251.902 1578.183 523.767820 test 7755535
## 5523 1251.902 1578.183 527.917133 test 7755535
## 5524 1251.902 1578.183 526.554508 test 7755535
## 5525 1251.902 1578.183 490.669858 test 7755535
## 5526 1251.902 1578.183 499.541955 test 7755535
## 5527 1251.902 1578.183 557.272038 test 7755535
## 5528 1251.902 1578.183 589.014941 test 7755535
## 5529 1251.902 1578.183 796.003200 test 7755535
## 5530 1251.902 1578.183 707.781324 test 7755535
## 5531 1251.902 1578.183 641.714509 test 7755535
## 5532 1251.902 1578.183 348.904574 test 7755535
## 5533 1251.902 1578.183 405.367044 test 7755535
## 5534 1251.902 1578.183 421.337594 test 7755535
## 5535 1251.902 1578.183 598.133726 test 7755535
## 5536 1251.902 1578.183 570.338223 test 7755535
## 5537 1251.902 1578.183 482.027846 test 7755535
## 5538 1251.902 1578.183 280.220062 test 7755535
## 5539 1251.902 1578.183 281.434475 test 7755535
## 5540 1251.902 1578.183 359.929782 test 7755535
## 5541 1251.902 1578.183 601.038185 test 7755535
## 5542 1251.902 1578.183 544.530937 test 7755535
## 5543 1251.902 1578.183 723.173361 test 7755535
## 5544 1251.902 1578.183 767.348419 test 7755535
## 5545 1251.902 1578.183 960.153706 test 7755535
## 5546 1251.902 1578.183 1086.333797 test 7755535
## 5547 1251.902 1578.183 945.652839 test 7755535
## 5548 1251.902 1578.183 1032.992651 test 7755535
## 5549 1251.902 1578.183 678.830467 test 7755535
## 5550 1251.902 1578.183 779.561636 test 7755535
## 5551 1251.902 1578.183 927.906533 test 7755535
## 5552 1251.902 1578.183 871.033297 test 7755535
## 5553 1251.902 1578.183 756.995235 test 7755535
## 5554 1251.902 1578.183 1028.215648 test 7755535
## 5555 1251.902 1578.183 1127.639625 test 7755535
## 5556 1251.902 1578.183 909.494365 test 7755535
## 5557 1251.902 1578.183 1126.442289 test 7755535
## 5558 1251.902 1578.183 817.066053 test 7755535
## 5559 1251.902 1578.183 836.773522 test 7755535
## 5560 1251.902 1578.183 1047.686205 test 7755535
## 5561 1251.902 1578.183 577.871999 test 7755535
## 5562 1251.902 1578.183 887.694165 test 7755535
## 5563 1251.902 1578.183 809.383832 test 7755535
## 5564 1251.902 1578.183 799.400711 test 7755535
## 5565 1251.902 1578.183 805.690793 test 7755535
## 5566 1251.902 1578.183 746.268781 test 7755535
## 5567 1251.902 1578.183 743.746548 test 7755535
## 5568 1251.902 1578.183 842.107326 test 7755535
## 5569 1251.902 1578.183 751.383301 test 7755535
## 5570 1251.902 1578.183 817.119554 test 7755535
## 5571 1251.902 1578.183 805.440730 test 7755535
## 5572 1251.902 1578.183 862.902524 test 7755535
## 5573 1251.902 1578.183 610.717806 test 7755535
## 5574 1251.902 1578.183 1151.817638 test 7755535
## 5575 1251.902 1578.183 1205.749223 test 7755535
## 5576 1251.902 1578.183 1587.140745 test 7755535
## 5577 1251.902 1578.183 886.043090 test 7755535
## 5578 1251.902 1578.183 1586.030698 test 7755535
## 5579 1251.902 1578.183 1250.690476 test 7755535
## 5580 1251.902 1578.183 1429.578045 test 7755535
## 5581 1251.902 1578.183 1338.987065 test 7755535
## 5582 1251.902 1578.183 924.968076 test 7755535
## 5583 1251.902 1578.183 1183.817011 test 7755535
## 5584 1251.902 1578.183 1242.645500 test 7755535
## 5585 1251.902 1578.183 836.849123 test 7755535
## 5586 1251.902 1578.183 933.225492 test 7755535
## 5587 1251.902 1578.183 931.056075 test 7755535
## 5588 1251.902 1578.183 930.994290 test 7755535
## 5589 1251.902 1578.183 1049.807609 test 7755535
## 5590 1251.902 1578.183 939.029701 test 7755535
## 5591 1251.902 1578.183 1021.181773 test 7755535
## 5592 1251.902 1578.183 839.106515 test 7755535
## 5593 1251.902 1578.183 745.132451 test 7755535
## 5594 1251.902 1578.183 736.953772 test 7755535
## 5595 1251.902 1578.183 744.866155 test 7755535
## 5596 1251.902 1578.183 746.586695 test 7755535
## 5597 1251.902 1578.183 691.069360 test 7755535
## 5598 1251.902 1578.183 581.098492 test 7755535
## 5599 1251.902 1578.183 689.918360 test 7755535
## 5600 1251.902 1578.183 675.098193 test 7755535
## 5601 1251.902 1578.183 717.581812 test 7755535
## 5602 1251.902 1578.183 770.537392 test 7755535
## 5603 1251.902 1578.183 699.632114 test 7755535
## 5604 1251.902 1578.183 798.537181 test 7755535
## 5605 1251.902 1578.183 705.045269 test 7755535
## 5606 1251.902 1578.183 708.492997 test 7755535
## 5607 1251.902 1578.183 549.252465 test 7755535
## 5608 1251.902 1578.183 424.802305 test 7755535
## 5609 1251.902 1578.183 525.527579 test 7755535
## 5610 1251.902 1578.183 727.102490 test 7755535
## 5611 1251.902 1578.183 656.536776 test 7755535
## 5612 1251.902 1578.183 621.584021 test 7755535
## 5613 1251.902 1578.183 615.662994 test 7755535
## 5614 1251.902 1578.183 621.064305 test 7755535
## 5615 1251.902 1578.183 618.873099 test 7755535
## 5616 1251.902 1578.183 623.177348 test 7755535
## 5617 1251.902 1578.183 623.099306 test 7755535
## 5618 1251.902 1578.183 627.354499 test 7755535
## 5619 1251.902 1578.183 622.209730 test 7755535
## 5620 1251.902 1578.183 626.890543 test 7755535
## 5621 1251.902 1578.183 681.560320 test 7755535
## 5622 1251.902 1578.183 753.519865 test 7755535
## 5623 1251.902 1578.183 671.655603 test 7755535
## 5624 1251.902 1578.183 658.800155 test 7755535
## 5625 1251.902 1578.183 656.250016 test 7755535
## 5626 1251.902 1578.183 499.443996 test 7755535
## 5627 1251.902 1578.183 695.172364 test 7755535
## 5628 1251.902 1578.183 628.151582 test 7755535
## 5629 1251.902 1578.183 631.495688 test 7755535
## 5630 1251.902 1578.183 656.360714 test 7755535
## 5631 1251.902 1578.183 631.745756 test 7755535
## 5632 1251.902 1578.183 684.055116 test 7755535
## 5633 1251.902 1578.183 662.606986 test 7755535
## 5634 1251.902 1578.183 1233.511962 test 7755535
## 5635 1251.902 1578.183 720.724295 test 7755535
## 5636 1251.902 1578.183 648.867678 test 7755535
## 5637 1251.902 1578.183 562.465904 test 7755535
## 5638 1251.902 1578.183 404.040266 test 7755535
## 5639 1251.902 1578.183 882.674492 test 7755535
## 5640 1251.902 1578.183 585.436049 test 7755535
## 5641 1251.902 1578.183 905.022194 test 7755535
## 5642 1251.902 1578.183 918.129709 test 7755535
## 5643 1251.902 1578.183 787.925467 test 7755535
## 5644 1251.902 1578.183 701.772553 test 7755535
## 5645 1251.902 1578.183 1091.911328 test 7755535
## 5646 1251.902 1578.183 854.975116 test 7755535
## 5647 1251.902 1578.183 754.372792 test 7755535
## 5648 1251.902 1578.183 779.115964 test 7755535
## 5649 1251.902 1578.183 531.620755 test 7755535
## 5650 1251.902 1578.183 615.919014 test 7755535
## 5651 1251.902 1578.183 567.604310 test 7755535
## 5652 1251.902 1578.183 563.766957 test 7755535
## 5653 1251.902 1578.183 487.777425 test 7755535
## 5654 1251.902 1578.183 418.414252 test 7755535
## 5655 1251.902 1578.183 663.678425 test 7755535
## 5656 1251.902 1578.183 673.309982 test 7755535
## 5657 1251.902 1578.183 754.324003 test 7755535
## 5658 1251.902 1578.183 739.366776 test 7755535
## 5659 1251.902 1578.183 415.581990 test 7755535
## 5660 1251.902 1578.183 503.977558 test 7755535
## 5661 1251.902 1578.183 698.044014 test 7755535
## 5662 1251.902 1578.183 460.331486 test 7755535
## 5663 1251.902 1578.183 678.056030 test 7755535
## 5664 1251.902 1578.183 634.693546 test 7755535
## 5665 1251.902 1578.183 502.129317 test 7755535
## 5666 1251.902 1578.183 375.070018 test 7755535
## 5667 1251.902 1578.183 392.699765 test 7755535
## 5668 1251.902 1578.183 307.577067 test 7755535
## 5669 1251.902 1578.183 314.733687 test 7755535
## 5670 1251.902 1578.183 224.395089 test 7755535
## 5671 1251.902 1578.183 309.319915 test 7755535
## 5672 1251.902 1578.183 375.237170 test 7755535
## 5673 1251.902 1578.183 385.996638 test 7755535
## 5674 1251.902 1578.183 323.082008 test 7755535
## 5675 1251.902 1578.183 353.160750 test 7755535
## 5676 1251.902 1578.183 402.603642 test 7755535
## 5677 1251.902 1578.183 332.377201 test 7755535
## 5678 1251.902 1578.183 291.957992 test 7755535
## 5679 1251.902 1578.183 257.904204 test 7755535
## 5680 1251.902 1578.183 312.463649 test 7755535
## 5681 1251.902 1578.183 230.601569 test 7755535
## 5682 1251.902 1578.183 332.324809 test 7755535
## 5683 1251.902 1578.183 356.581623 test 7755535
## 5684 1251.902 1578.183 425.663855 test 7755535
## 5685 1251.902 1578.183 546.446699 test 7755535
## 5686 1251.902 1578.183 469.616353 test 7755535
## 5687 1251.902 1578.183 393.667728 test 7755535
## 5688 1251.902 1578.183 421.341025 test 7755535
## 5689 1251.902 1578.183 366.260813 test 7755535
## 5690 1251.902 1578.183 386.132798 test 7755535
## 5691 1251.902 1578.183 635.969122 test 7755535
## 5692 1251.902 1578.183 632.546292 test 7755535
## 5693 1251.902 1578.183 546.586398 test 7755535
## 5694 1251.902 1578.183 346.675109 test 7755535
## 5695 1251.902 1578.183 572.906946 test 7755535
## 5696 1251.902 1578.183 860.888471 test 7755535
## 5697 1251.902 1578.183 587.668337 test 7755535
## 5698 1251.902 1578.183 555.576492 test 7755535
## 5699 1251.902 1578.183 544.873290 test 7755535
## 5700 1251.902 1578.183 593.883134 test 7755535
## 5701 1251.902 1578.183 584.792280 test 7755535
## 5702 1251.902 1578.183 380.319858 test 7755535
## 5703 1251.902 1578.183 280.747110 test 7755535
## 5704 1251.902 1578.183 390.096133 test 7755535
## 5705 1251.902 1578.183 348.964214 test 7755535
## 5706 1251.902 1578.183 326.772143 test 7755535
## 5707 1251.902 1578.183 271.012241 test 7755535
## 5708 1251.902 1578.183 544.435137 test 7755535
## 5709 1251.902 1578.183 486.510222 test 7755535
## 5710 1251.902 1578.183 555.187077 test 7755535
## 5711 1251.902 1578.183 563.196552 test 7755535
## 5712 1251.902 1578.183 485.247587 test 7755535
## 5713 1251.902 1578.183 470.667240 test 7755535
## 5714 1251.902 1578.183 648.520542 test 7755535
## 5715 1251.902 1578.183 795.660938 test 7755535
## 5716 1251.902 1578.183 601.075214 test 7755535
## 5717 1251.902 1578.183 610.978203 test 7755535
## 5718 1251.902 1578.183 565.506092 test 7755535
## 5719 1251.902 1578.183 435.103798 test 7755535
## 5720 1251.902 1578.183 443.429154 test 7755535
## 5721 1251.902 1578.183 598.982561 test 7755535
## 5722 1251.902 1578.183 354.437376 test 7755535
## 5723 1251.902 1578.183 438.528299 test 7755535
## 5724 1251.902 1578.183 334.375051 test 7755535
## 5725 1251.902 1578.183 400.656697 test 7755535
## 5726 1251.902 1578.183 351.145530 test 7755535
## 5727 1251.902 1578.183 298.237170 test 7755535
## 5728 1251.902 1578.183 239.209607 test 7755535
## 5729 1251.902 1578.183 292.206138 test 7755535
## 5730 1251.902 1578.183 336.209580 test 7755535
## 5731 1251.902 1578.183 566.598108 test 7755535
## 5732 1251.902 1578.183 434.384921 test 7755535
## 5733 1251.902 1578.183 455.652253 test 7755535
## 5734 1251.902 1578.183 590.056565 test 7755535
## 5735 1251.902 1578.183 584.923387 test 7755535
## 5736 1251.902 1578.183 751.152713 test 7755535
## 5737 1251.902 1578.183 660.232942 test 7755535
## 5738 1251.902 1578.183 807.363550 test 7755535
## 5739 1251.902 1578.183 726.615356 test 7755535
## 5740 1251.902 1578.183 1042.227798 test 7755535
## 5741 1251.902 1578.183 901.561058 test 7755535
## 5742 1251.902 1578.183 1059.511783 test 7755535
## 5743 1251.902 1578.183 1161.561600 test 7755535
## 5744 1251.902 1578.183 1448.060183 test 7755535
## 5745 1251.902 1578.183 1582.690020 test 7755535
## 5746 1251.902 1578.183 828.607810 test 7755535
## 5747 1251.902 1578.183 677.792506 test 7755535
## 5748 1251.902 1578.183 1108.283788 test 7755535
## 5749 1251.902 1578.183 675.350618 test 7755535
## 5750 1251.902 1578.183 933.244362 test 7755535
## 5751 1251.902 1578.183 679.501212 test 7755535
## 5752 1251.902 1578.183 846.512888 test 7755535
## 5753 1251.902 1578.183 650.504146 test 7755535
## 5754 1251.902 1578.183 711.078239 test 7755535
## 5755 1251.902 1578.183 726.648840 test 7755535
## 5756 1251.902 1578.183 739.387540 test 7755535
## 5757 1251.902 1578.183 851.327517 test 7755535
## 5758 1251.902 1578.183 863.352318 test 7755535
## 5759 1251.902 1578.183 776.780887 test 7755535
## 5760 1251.902 1578.183 722.730555 test 7755535
## 5761 1251.902 1578.183 702.548692 test 7755535
## 5762 1251.902 1578.183 700.341928 test 7755535
## 5763 1251.902 1578.183 785.658006 test 7755535
## 5764 1251.902 1578.183 901.975779 test 7755535
## 5765 1251.902 1578.183 750.534633 test 7755535
## 5766 1251.902 1578.183 1034.056541 test 7755535
## 5767 1251.902 1578.183 786.615821 test 7755535
## 5768 1251.902 1578.183 841.144748 test 7755535
## 5769 1251.902 1578.183 1262.049493 test 7755535
## 5770 1251.902 1578.183 1183.896030 test 7755535
## 5771 1251.902 1578.183 868.283217 test 7755535
## 5772 1251.902 1578.183 1144.508181 test 7755535
## 5773 1251.902 1578.183 805.309835 test 7755535
## 5774 1251.902 1578.183 666.314079 test 7755535
## 5775 1251.902 1578.183 934.005574 test 7755535
## 5776 1251.902 1578.183 1137.231705 test 7755535
## 5777 1251.902 1578.183 806.520853 test 7755535
## 5778 1251.902 1578.183 1053.969611 test 7755535
## 5779 1251.902 1578.183 930.278440 test 7755535
## 5780 1251.902 1578.183 1035.959713 test 7755535
## 5781 1251.902 1578.183 744.914458 test 7755535
## 5782 1251.902 1578.183 745.154293 test 7755535
## 5783 1251.902 1578.183 745.136909 test 7755535
## 5784 1251.902 1578.183 746.813544 test 7755535
## 5785 1251.902 1578.183 746.382730 test 7755535
## 5786 1251.902 1578.183 745.487077 test 7755535
## 5787 1251.902 1578.183 738.074145 test 7755535
## 5788 1251.902 1578.183 959.441404 test 7755535
## 5789 1251.902 1578.183 814.654420 test 7755535
## 5790 1251.902 1578.183 1108.164325 test 7755535
## 5791 1251.902 1578.183 514.985793 test 7755535
## 5792 1251.902 1578.183 479.523347 test 7755535
## 5793 1251.902 1578.183 710.836172 test 7755535
## 5794 1251.902 1578.183 653.212864 test 7755535
## 5795 1251.902 1578.183 786.023917 test 7755535
## 5796 1251.902 1578.183 664.276818 test 7755535
## 5797 1251.902 1578.183 658.323236 test 7755535
## 5798 1251.902 1578.183 885.719170 test 7755535
## 5799 1251.902 1578.183 801.038644 test 7755535
## 5800 1251.902 1578.183 706.326345 test 7755535
## 5801 1251.902 1578.183 547.984327 test 7755535
## 5802 1251.902 1578.183 629.519651 test 7755535
## 5803 1251.902 1578.183 817.204889 test 7755535
## 5804 1251.902 1578.183 698.092279 test 7755535
## 5805 1251.902 1578.183 616.836388 test 7755535
## 5806 1251.902 1578.183 661.746411 test 7755535
## 5807 1251.902 1578.183 731.854469 test 7755535
## 5808 1251.902 1578.183 820.522619 test 7755535
## 5809 1251.902 1578.183 921.105444 test 7755535
## 5810 1251.902 1578.183 761.218641 test 7755535
## 5811 1251.902 1578.183 752.899931 test 7755535
## 5812 1251.902 1578.183 895.493154 test 7755535
## 5813 1251.902 1578.183 736.641217 test 7755535
## 5814 1251.902 1578.183 655.834766 test 7755535
## 5815 1251.902 1578.183 655.001883 test 7755535
## 5816 1251.902 1578.183 668.693250 test 7755535
## 5817 1251.902 1578.183 806.498622 test 7755535
## 5818 1251.902 1578.183 715.458391 test 7755535
## 5819 1251.902 1578.183 913.633511 test 7755535
## 5820 1251.902 1578.183 800.793146 test 7755535
## 5821 1251.902 1578.183 387.834408 test 7755535
## 5822 1251.902 1578.183 579.519658 test 7755535
## 5823 1251.902 1578.183 547.271853 test 7755535
## 5824 1251.902 1578.183 442.325712 test 7755535
## 5825 1251.902 1578.183 845.025333 test 7755535
## 5826 1251.902 1578.183 566.320411 test 7755535
## 5827 1251.902 1578.183 864.535044 test 7755535
## 5828 1251.902 1578.183 638.459880 test 7755535
## 5829 1251.902 1578.183 688.782975 test 7755535
## 5830 1251.902 1578.183 751.183541 test 7755535
## 5831 1251.902 1578.183 781.280621 test 7755535
## 5832 1251.902 1578.183 666.790447 test 7755535
## 5833 1251.902 1578.183 705.322862 test 7755535
## 5834 1251.902 1578.183 620.606910 test 7755535
## 5835 1251.902 1578.183 531.891896 test 7755535
## 5836 1251.902 1578.183 305.113661 test 7755535
## 5837 1251.902 1578.183 472.092165 test 7755535
## 5838 1251.902 1578.183 431.909053 test 7755535
## 5839 1251.902 1578.183 599.767420 test 7755535
## 5840 1251.902 1578.183 569.922830 test 7755535
## 5841 1251.902 1578.183 495.086941 test 7755535
## 5842 1251.902 1578.183 547.863392 test 7755535
## 5843 1251.902 1578.183 442.239165 test 7755535
## 5844 1251.902 1578.183 428.583729 test 7755535
## 5845 1251.902 1578.183 604.555459 test 7755535
## 5846 1251.902 1578.183 456.234738 test 7755535
## 5847 1251.902 1578.183 563.314515 test 7755535
## 5848 1251.902 1578.183 493.013693 test 7755535
## 5849 1251.902 1578.183 666.180443 test 7755535
## 5850 1251.902 1578.183 403.278366 test 7755535
## 5851 1251.902 1578.183 425.939012 test 7755535
## 5852 1251.902 1578.183 318.942728 test 7755535
## 5853 1251.902 1578.183 346.154171 test 7755535
## 5854 1251.902 1578.183 448.355709 test 7755535
## 5855 1251.902 1578.183 358.692294 test 7755535
## 5856 1251.902 1578.183 350.185783 test 7755535
## 5857 1251.902 1578.183 341.182715 test 7755535
## 5858 1251.902 1578.183 262.735078 test 7755535
## 5859 1251.902 1578.183 254.309938 test 7755535
## 5860 1251.902 1578.183 287.332095 test 7755535
## 5861 1251.902 1578.183 231.753549 test 7755535
## 5862 1251.902 1578.183 345.684016 test 7755535
## 5863 1251.902 1578.183 421.685473 test 7755535
## 5864 1251.902 1578.183 400.764218 test 7755535
## 5865 1251.902 1578.183 425.354711 test 7755535
## 5866 1251.902 1578.183 347.819408 test 7755535
## 5867 1251.902 1578.183 257.499214 test 7755535
## 5868 1251.902 1578.183 316.764273 test 7755535
## 5869 1251.902 1578.183 536.446887 test 7755535
## 5870 1251.902 1578.183 617.582787 test 7755535
## 5871 1251.902 1578.183 312.572010 test 7755535
## 5872 1251.902 1578.183 496.444832 test 7755535
## 5873 1251.902 1578.183 500.561362 test 7755535
## 5874 1251.902 1578.183 486.174840 test 7755535
## 5875 1251.902 1578.183 583.258865 test 7755535
## 5876 1251.902 1578.183 838.290448 test 7755535
## 5877 1251.902 1578.183 590.740672 test 7755535
## 5878 1251.902 1578.183 558.240700 test 7755535
## 5879 1251.902 1578.183 517.031032 test 7755535
## 5880 1251.902 1578.183 718.848785 test 7755535
## 5881 1251.902 1578.183 434.966734 test 7755535
## 5882 1251.902 1578.183 403.766286 test 7755535
## 5883 1251.902 1578.183 362.814253 test 7755535
## 5884 1251.902 1578.183 485.500961 test 7755535
## 5885 1251.902 1578.183 422.622692 test 7755535
## 5886 1251.902 1578.183 408.986934 test 7755535
## 5887 1251.902 1578.183 492.565079 test 7755535
## 5888 1251.902 1578.183 564.291941 test 7755535
## 5889 1251.902 1578.183 550.815007 test 7755535
## 5890 1251.902 1578.183 468.431978 test 7755535
## 5891 1251.902 1578.183 550.516283 test 7755535
## 5892 1251.902 1578.183 660.508910 test 7755535
## 5893 1251.902 1578.183 773.450859 test 7755535
## 5894 1251.902 1578.183 647.019197 test 7755535
## 5895 1251.902 1578.183 504.467051 test 7755535
## 5896 1251.902 1578.183 452.360493 test 7755535
## 5897 1251.902 1578.183 528.770543 test 7755535
## 5898 1251.902 1578.183 544.660129 test 7755535
## 5899 1251.902 1578.183 422.755193 test 7755535
## 5900 1251.902 1578.183 490.925056 test 7755535
## 5901 1251.902 1578.183 382.236603 test 7755535
## 5902 1251.902 1578.183 364.970706 test 7755535
## 5903 1251.902 1578.183 373.079618 test 7755535
## 5904 1251.902 1578.183 477.202093 test 7755535
## 5905 1251.902 1578.183 538.357225 test 7755535
## 5906 1251.902 1578.183 336.966558 test 7755535
## 5907 1251.902 1578.183 489.343284 test 7755535
## 5908 1251.902 1578.183 344.445497 test 7755535
## 5909 1251.902 1578.183 194.623525 test 7755535
## 5910 1251.902 1578.183 267.090677 test 7755535
## 5911 1251.902 1578.183 581.958588 test 7755535
## 5912 1251.902 1578.183 716.885453 test 7755535
## 5913 1251.902 1578.183 756.290448 test 7755535
## 5914 1251.902 1578.183 748.150043 test 7755535
## 5915 1251.902 1578.183 619.820490 test 7755535
## 5916 1251.902 1578.183 878.082697 test 7755535
## 5917 1251.902 1578.183 507.262349 test 7755535
## 5918 1251.902 1578.183 648.767633 test 7755535
## 5919 1251.902 1578.183 723.946459 test 7755535
## 5920 1251.902 1578.183 835.214730 test 7755535
## 5921 1251.902 1578.183 1381.882418 test 7755535
## 5922 1251.902 1578.183 750.734720 test 7755535
## 5923 1251.902 1578.183 784.140709 test 7755535
## 5924 1251.902 1578.183 1012.903750 test 7755535
## 5925 1251.902 1578.183 1088.735415 test 7755535
## 5926 1251.902 1578.183 1142.503751 test 7755535
## 5927 1251.902 1578.183 990.939262 test 7755535
## 5928 1251.902 1578.183 772.150094 test 7755535
## 5929 1251.902 1578.183 831.285876 test 7755535
## 5930 1251.902 1578.183 749.999598 test 7755535
## 5931 1251.902 1578.183 829.563974 test 7755535
## 5932 1251.902 1578.183 575.895524 test 7755535
## 5933 1251.902 1578.183 767.762996 test 7755535
## 5934 1251.902 1578.183 732.422302 test 7755535
## 5935 1251.902 1578.183 791.363008 test 7755535
## 5936 1251.902 1578.183 822.073521 test 7755535
## 5937 1251.902 1578.183 1119.627203 test 7755535
## 5938 1251.902 1578.183 991.472195 test 7755535
## 5939 1251.902 1578.183 886.512824 test 7755535
## 5940 1251.902 1578.183 789.408951 test 7755535
## 5941 1251.902 1578.183 718.359332 test 7755535
## 5942 1251.902 1578.183 704.852617 test 7755535
## 5943 1251.902 1578.183 750.753003 test 7755535
## 5944 1251.902 1578.183 751.466919 test 7755535
## 5945 1251.902 1578.183 889.179878 test 7755535
## 5946 1251.902 1578.183 851.108061 test 7755535
## 5947 1251.902 1578.183 1074.890429 test 7755535
## 5948 1251.902 1578.183 849.574367 test 7755535
## 5949 1251.902 1578.183 969.418748 test 7755535
## 5950 1251.902 1578.183 1090.325882 test 7755535
## 5951 1251.902 1578.183 535.836216 test 7755535
## 5952 1251.902 1578.183 607.828225 test 7755535
## 5953 1251.902 1578.183 919.683292 test 7755535
## 5954 1251.902 1578.183 1321.688601 test 7755535
## 5955 1251.902 1578.183 1282.788814 test 7755535
## 5956 1251.902 1578.183 861.057233 test 7755535
## 5957 1251.902 1578.183 744.779709 test 7755535
## 5958 1251.902 1578.183 745.284198 test 7755535
## 5959 1251.902 1578.183 1111.322731 test 7755535
## 5960 1251.902 1578.183 1043.413061 test 7755535
## 5961 1251.902 1578.183 749.413582 test 7755535
## 5962 1251.902 1578.183 672.600526 test 7755535
## 5963 1251.902 1578.183 500.201180 test 7755535
## 5964 1251.902 1578.183 505.083044 test 7755535
## 5965 1251.902 1578.183 635.179447 test 7755535
## 5966 1251.902 1578.183 551.798838 test 7755535
## 5967 1251.902 1578.183 765.734105 test 7755535
## 5968 1251.902 1578.183 791.123381 test 7755535
## 5969 1251.902 1578.183 693.648595 test 7755535
## 5970 1251.902 1578.183 782.338351 test 7755535
## 5971 1251.902 1578.183 585.881356 test 7755535
## 5972 1251.902 1578.183 538.589521 test 7755535
## 5973 1251.902 1578.183 781.981434 test 7755535
## 5974 1251.902 1578.183 788.640843 test 7755535
## 5975 1251.902 1578.183 676.974556 test 7755535
## 5976 1251.902 1578.183 702.761929 test 7755535
## 5977 1251.902 1578.183 802.640354 test 7755535
## 5978 1251.902 1578.183 889.176677 test 7755535
## 5979 1251.902 1578.183 843.822842 test 7755535
## 5980 1251.902 1578.183 731.759070 test 7755535
## 5981 1251.902 1578.183 701.896241 test 7755535
## 5982 1251.902 1578.183 1115.300263 test 7755535
## 5983 1251.902 1578.183 794.601144 test 7755535
## 5984 1251.902 1578.183 762.133009 test 7755535
## 5985 1251.902 1578.183 785.397123 test 7755535
## 5986 1251.902 1578.183 1117.503005 test 7755535
## 5987 1251.902 1578.183 827.835450 test 7755535
## 5988 1251.902 1578.183 522.086885 test 7755535
## 5989 1251.902 1578.183 545.533002 test 7755535
## 5990 1251.902 1578.183 673.504656 test 7755535
## 5991 1251.902 1578.183 847.470887 test 7755535
## 5992 1251.902 1578.183 675.780724 test 7755535
## 5993 1251.902 1578.183 1053.129032 test 7755535
## 5994 1251.902 1578.183 656.148798 test 7755535
## 5995 1251.902 1578.183 351.192462 test 7755535
## 5996 1251.902 1578.183 492.308555 test 7755535
## 5997 1251.902 1578.183 602.086941 test 7755535
## 5998 1251.902 1578.183 998.968281 test 7755535
## 5999 1251.902 1578.183 632.337373 test 7755535
## 6000 1251.902 1578.183 622.904693 test 7755535
## 6001 1251.902 1578.183 825.610198 test 7755535
## 6002 1251.902 1578.183 841.411346 test 7755535
## 6003 1251.902 1578.183 770.586233 test 7755535
## 6004 1251.902 1578.183 610.534442 test 7755535
## 6005 1251.902 1578.183 592.784195 test 7755535
## 6006 1251.902 1578.183 534.227497 test 7755535
## 6007 1251.902 1578.183 423.025458 test 7755535
## 6008 1251.902 1578.183 553.639562 test 7755535
## 6009 1251.902 1578.183 377.808755 test 7755535
## 6010 1251.902 1578.183 423.786440 test 7755535
## 6011 1251.902 1578.183 504.745151 test 7755535
## 6012 1251.902 1578.183 541.411919 test 7755535
## 6013 1251.902 1578.183 502.658518 test 7755535
## 6014 1251.902 1578.183 596.413514 test 7755535
## 6015 1251.902 1578.183 515.308546 test 7755535
## 6016 1251.902 1578.183 513.870918 test 7755535
## 6017 1251.902 1578.183 574.979107 test 7755535
## 6018 1251.902 1578.183 550.267440 test 7755535
## 6019 1251.902 1578.183 425.824957 test 7755535
## 6020 1251.902 1578.183 585.848419 test 7755535
## 6021 1251.902 1578.183 471.806780 test 7755535
## 6022 1251.902 1578.183 284.454314 test 7755535
## 6023 1251.902 1578.183 370.466930 test 7755535
## 6024 1251.902 1578.183 394.928077 test 7755535
## 6025 1251.902 1578.183 314.599590 test 7755535
## 6026 1251.902 1578.183 433.884645 test 7755535
## 6027 1251.902 1578.183 315.488125 test 7755535
## 6028 1251.902 1578.183 278.335070 test 7755535
## 6029 1251.902 1578.183 305.413989 test 7755535
## 6030 1251.902 1578.183 345.581263 test 7755535
## 6031 1251.902 1578.183 314.741719 test 7755535
## 6032 1251.902 1578.183 431.122463 test 7755535
## 6033 1251.902 1578.183 529.196404 test 7755535
## 6034 1251.902 1578.183 447.508725 test 7755535
## 6035 1251.902 1578.183 580.972802 test 7755535
## 6036 1251.902 1578.183 400.784305 test 7755535
## 6037 1251.902 1578.183 365.116304 test 7755535
## 6038 1251.902 1578.183 290.808726 test 7755535
## 6039 1251.902 1578.183 360.256890 test 7755535
## 6040 1251.902 1578.183 576.428189 test 7755535
## 6041 1251.902 1578.183 381.194885 test 7755535
## 6042 1251.902 1578.183 514.582467 test 7755535
## 6043 1251.902 1578.183 312.504063 test 7755535
## 6044 1251.902 1578.183 424.270049 test 7755535
## 6045 1251.902 1578.183 452.893829 test 7755535
## 6046 1251.902 1578.183 431.639683 test 7755535
## 6047 1251.902 1578.183 452.468560 test 7755535
## 6048 1251.902 1578.183 831.402658 test 7755535
## 6049 1251.902 1578.183 478.852358 test 7755535
## 6050 1251.902 1578.183 676.242431 test 7755535
## 6051 1251.902 1578.183 510.644808 test 7755535
## 6052 1251.902 1578.183 523.044331 test 7755535
## 6053 1251.902 1578.183 462.991435 test 7755535
## 6054 1251.902 1578.183 391.586883 test 7755535
## 6055 1251.902 1578.183 383.930588 test 7755535
## 6056 1251.902 1578.183 392.061953 test 7755535
## 6057 1251.902 1578.183 797.218495 test 7755535
## 6058 1251.902 1578.183 358.607863 test 7755535
## 6059 1251.902 1578.183 315.432348 test 7755535
## 6060 1251.902 1578.183 597.553389 test 7755535
## 6061 1251.902 1578.183 542.469562 test 7755535
## 6062 1251.902 1578.183 507.434582 test 7755535
## 6063 1251.902 1578.183 567.952155 test 7755535
## 6064 1251.902 1578.183 500.131481 test 7755535
## 6065 1251.902 1578.183 618.088671 test 7755535
## 6066 1251.902 1578.183 496.868392 test 7755535
## 6067 1251.902 1578.183 520.823082 test 7755535
## 6068 1251.902 1578.183 494.402391 test 7755535
## 6069 1251.902 1578.183 442.423897 test 7755535
## 6070 1251.902 1578.183 662.365404 test 7755535
## 6071 1251.902 1578.183 579.675262 test 7755535
## 6072 1251.902 1578.183 652.267197 test 7755535
## 6073 1251.902 1578.183 663.208709 test 7755535
## 6074 1251.902 1578.183 602.497013 test 7755535
## 6075 1251.902 1578.183 621.208728 test 7755535
## 6076 1251.902 1578.183 664.583402 test 7755535
## 6077 1251.902 1578.183 579.146166 test 7755535
## 6078 1251.902 1578.183 683.072130 test 7755535
## 6079 1251.902 1578.183 524.543188 test 7755535
## 6080 1251.902 1578.183 363.486913 test 7755535
## 6081 1251.902 1578.183 358.484967 test 7755535
## 6082 1251.902 1578.183 312.702522 test 7755535
## 6083 1251.902 1578.183 370.100683 test 7755535
## 6084 1251.902 1578.183 538.579397 test 7755535
## 6085 1251.902 1578.183 389.310619 test 7755535
## 6086 1251.902 1578.183 379.908285 test 7755535
## 6087 1251.902 1578.183 505.583701 test 7755535
## 6088 1251.902 1578.183 680.134680 test 7755535
## 6089 1251.902 1578.183 674.081266 test 7755535
## 6090 1251.902 1578.183 637.330177 test 7755535
## 6091 1251.902 1578.183 834.259686 test 7755535
## 6092 1251.902 1578.183 1028.198714 test 7755535
## 6093 1251.902 1578.183 919.453081 test 7755535
## 6094 1251.902 1578.183 944.726609 test 7755535
## 6095 1251.902 1578.183 1204.337500 test 7755535
## 6096 1251.902 1578.183 743.358276 test 7755535
## 6097 1251.902 1578.183 610.572574 test 7755535
## 6098 1251.902 1578.183 900.749594 test 7755535
## 6099 1251.902 1578.183 840.270255 test 7755535
## 6100 1251.902 1578.183 815.171075 test 7755535
## 6101 1251.902 1578.183 763.149472 test 7755535
## 6102 1251.902 1578.183 844.273678 test 7755535
## 6103 1251.902 1578.183 950.349743 test 7755535
## 6104 1251.902 1578.183 799.966463 test 7755535
## 6105 1251.902 1578.183 846.486232 test 7755535
## 6106 1251.902 1578.183 937.160673 test 7755535
## 6107 1251.902 1578.183 1058.537890 test 7755535
## 6108 1251.902 1578.183 932.234289 test 7755535
## 6109 1251.902 1578.183 854.460321 test 7755535
## 6110 1251.902 1578.183 761.133955 test 7755535
## 6111 1251.902 1578.183 766.569419 test 7755535
## 6112 1251.902 1578.183 694.923641 test 7755535
## 6113 1251.902 1578.183 679.918578 test 7755535
## 6114 1251.902 1578.183 845.752424 test 7755535
## 6115 1251.902 1578.183 710.455533 test 7755535
## 6116 1251.902 1578.183 706.381383 test 7755535
## 6117 1251.902 1578.183 993.245459 test 7755535
## 6118 1251.902 1578.183 1002.426037 test 7755535
## 6119 1251.902 1578.183 981.745001 test 7755535
## 6120 1251.902 1578.183 832.164867 test 7755535
## 6121 1251.902 1578.183 841.583277 test 7755535
## 6122 1251.902 1578.183 920.852954 test 7755535
## 6123 1251.902 1578.183 540.695752 test 7755535
## 6124 1251.902 1578.183 849.578951 test 7755535
## 6125 1251.902 1578.183 668.993169 test 7755535
## 6126 1251.902 1578.183 689.016018 test 7755535
## 6127 1251.902 1578.183 605.671532 test 7755535
## 6128 1251.902 1578.183 563.726956 test 7755535
## 6129 1251.902 1578.183 526.684245 test 7755535
## 6130 1251.902 1578.183 615.548064 test 7755535
## 6131 1251.902 1578.183 598.006576 test 7755535
## 6132 1251.902 1578.183 636.245690 test 7755535
## 6133 1251.902 1578.183 608.698121 test 7755535
## 6134 1251.902 1578.183 634.975183 test 7755535
## 6135 1251.902 1578.183 759.194267 test 7755535
## 6136 1251.902 1578.183 933.998458 test 7755535
## 6137 1251.902 1578.183 881.150980 test 7755535
## 6138 1251.902 1578.183 907.569995 test 7755535
## 6139 1251.902 1578.183 722.096821 test 7755535
## 6140 1251.902 1578.183 642.545208 test 7755535
## 6141 1251.902 1578.183 667.373942 test 7755535
## 6142 1251.902 1578.183 691.093904 test 7755535
## 6143 1251.902 1578.183 882.729371 test 7755535
## 6144 1251.902 1578.183 745.576463 test 7755535
## 6145 1251.902 1578.183 635.221607 test 7755535
## 6146 1251.902 1578.183 1071.764920 test 7755535
## 6147 1251.902 1578.183 778.898107 test 7755535
## 6148 1251.902 1578.183 602.951431 test 7755535
## 6149 1251.902 1578.183 731.553031 test 7755535
## 6150 1251.902 1578.183 516.515908 test 7755535
## 6151 1251.902 1578.183 616.037753 test 7755535
## 6152 1251.902 1578.183 746.794668 test 7755535
## 6153 1251.902 1578.183 516.444217 test 7755535
## 6154 1251.902 1578.183 791.094318 test 7755535
## 6155 1251.902 1578.183 551.817169 test 7755535
## 6156 1251.902 1578.183 935.072909 test 7755535
## 6157 1251.902 1578.183 837.270081 test 7755535
## 6158 1251.902 1578.183 1062.341682 test 7755535
## 6159 1251.902 1578.183 900.539683 test 7755535
## 6160 1251.902 1578.183 957.479422 test 7755535
## 6161 1251.902 1578.183 955.001671 test 7755535
## 6162 1251.902 1578.183 825.142489 test 7755535
## 6163 1251.902 1578.183 747.255915 test 7755535
## 6164 1251.902 1578.183 727.945363 test 7755535
## 6165 1251.902 1578.183 715.491265 test 7755535
## 6166 1251.902 1578.183 566.979338 test 7755535
## 6167 1251.902 1578.183 505.537736 test 7755535
## 6168 1251.902 1578.183 648.331190 test 7755535
## 6169 1251.902 1578.183 822.388001 test 7755535
## 6170 1251.902 1578.183 829.575995 test 7755535
## 6171 1251.902 1578.183 550.148045 test 7755535
## 6172 1251.902 1578.183 523.650434 test 7755535
## 6173 1251.902 1578.183 688.271635 test 7755535
## 6174 1251.902 1578.183 515.167105 test 7755535
## 6175 1251.902 1578.183 549.459131 test 7755535
## 6176 1251.902 1578.183 583.869124 test 7755535
## 6177 1251.902 1578.183 606.671939 test 7755535
## 6178 1251.902 1578.183 696.091024 test 7755535
## 6179 1251.902 1578.183 736.188976 test 7755535
## 6180 1251.902 1578.183 913.033443 test 7755535
## 6181 1251.902 1578.183 1116.272116 test 7755535
## 6182 1251.902 1578.183 892.368879 test 7755535
## 6183 1251.902 1578.183 810.417288 test 7755535
## 6184 1251.902 1578.183 866.402527 test 7755535
## 6185 1251.902 1578.183 831.755097 test 7755535
## 6186 1251.902 1578.183 634.511241 test 7755535
## 6187 1251.902 1578.183 565.491208 test 7755535
## 6188 1251.902 1578.183 494.797863 test 7755535
## 6189 1251.902 1578.183 326.799085 test 7755535
## 6190 1251.902 1578.183 342.431382 test 7755535
## 6191 1251.902 1578.183 654.220747 test 7755535
## 6192 1251.902 1578.183 442.625222 test 7755535
## 6193 1251.902 1578.183 493.236547 test 7755535
## 6194 1251.902 1578.183 594.204618 test 7755535
## 6195 1251.902 1578.183 654.280011 test 7755535
get_df(veroni, "test")
## mean sd area text count
## 1 2521.817 2886.871 3.946585e+03 test 7832763
## 2 2521.817 2886.871 3.751049e+03 test 7832763
## 3 2521.817 2886.871 8.342178e+03 test 7832763
## 4 2521.817 2886.871 8.050553e+03 test 7832763
## 5 2521.817 2886.871 3.671827e+03 test 7832763
## 6 2521.817 2886.871 2.005379e+03 test 7832763
## 7 2521.817 2886.871 8.495280e+02 test 7832763
## 8 2521.817 2886.871 2.525326e+03 test 7832763
## 9 2521.817 2886.871 8.760293e+03 test 7832763
## 10 2521.817 2886.871 1.532234e+03 test 7832763
## 11 2521.817 2886.871 2.117262e+03 test 7832763
## 12 2521.817 2886.871 7.030822e+03 test 7832763
## 13 2521.817 2886.871 3.241647e+03 test 7832763
## 14 2521.817 2886.871 5.388199e+03 test 7832763
## 15 2521.817 2886.871 2.269755e+03 test 7832763
## 16 2521.817 2886.871 6.220424e+03 test 7832763
## 17 2521.817 2886.871 7.268994e+03 test 7832763
## 18 2521.817 2886.871 4.365441e+03 test 7832763
## 19 2521.817 2886.871 1.911263e+03 test 7832763
## 20 2521.817 2886.871 2.253123e+03 test 7832763
## 21 2521.817 2886.871 2.756593e+03 test 7832763
## 22 2521.817 2886.871 2.804591e+03 test 7832763
## 23 2521.817 2886.871 4.268528e+03 test 7832763
## 24 2521.817 2886.871 6.688045e+03 test 7832763
## 25 2521.817 2886.871 8.820823e+03 test 7832763
## 26 2521.817 2886.871 3.364114e+03 test 7832763
## 27 2521.817 2886.871 3.825187e+03 test 7832763
## 28 2521.817 2886.871 1.200016e+04 test 7832763
## 29 2521.817 2886.871 3.210265e+03 test 7832763
## 30 2521.817 2886.871 6.757394e+03 test 7832763
## 31 2521.817 2886.871 9.349302e+03 test 7832763
## 32 2521.817 2886.871 2.267425e+03 test 7832763
## 33 2521.817 2886.871 6.347866e+03 test 7832763
## 34 2521.817 2886.871 4.533866e+03 test 7832763
## 35 2521.817 2886.871 2.532885e+03 test 7832763
## 36 2521.817 2886.871 5.242198e+03 test 7832763
## 37 2521.817 2886.871 3.506541e+03 test 7832763
## 38 2521.817 2886.871 9.813783e+03 test 7832763
## 39 2521.817 2886.871 8.401881e+03 test 7832763
## 40 2521.817 2886.871 4.737179e+03 test 7832763
## 41 2521.817 2886.871 9.554886e+03 test 7832763
## 42 2521.817 2886.871 8.022948e+03 test 7832763
## 43 2521.817 2886.871 2.655018e+03 test 7832763
## 44 2521.817 2886.871 3.193847e+03 test 7832763
## 45 2521.817 2886.871 9.388250e+03 test 7832763
## 46 2521.817 2886.871 2.459496e+03 test 7832763
## 47 2521.817 2886.871 1.839050e+04 test 7832763
## 48 2521.817 2886.871 6.521769e+03 test 7832763
## 49 2521.817 2886.871 4.263108e+03 test 7832763
## 50 2521.817 2886.871 2.481210e+03 test 7832763
## 51 2521.817 2886.871 1.371078e+04 test 7832763
## 52 2521.817 2886.871 2.606774e+03 test 7832763
## 53 2521.817 2886.871 2.207769e+03 test 7832763
## 54 2521.817 2886.871 3.206480e+03 test 7832763
## 55 2521.817 2886.871 2.131826e+03 test 7832763
## 56 2521.817 2886.871 5.506166e+03 test 7832763
## 57 2521.817 2886.871 2.025306e+03 test 7832763
## 58 2521.817 2886.871 2.125205e+03 test 7832763
## 59 2521.817 2886.871 2.257491e+03 test 7832763
## 60 2521.817 2886.871 2.659152e+03 test 7832763
## 61 2521.817 2886.871 2.224003e+03 test 7832763
## 62 2521.817 2886.871 3.168625e+03 test 7832763
## 63 2521.817 2886.871 7.816542e+03 test 7832763
## 64 2521.817 2886.871 1.652368e+04 test 7832763
## 65 2521.817 2886.871 4.000830e+03 test 7832763
## 66 2521.817 2886.871 4.197902e+03 test 7832763
## 67 2521.817 2886.871 1.893738e+03 test 7832763
## 68 2521.817 2886.871 3.567418e+03 test 7832763
## 69 2521.817 2886.871 2.647154e+03 test 7832763
## 70 2521.817 2886.871 6.948039e+03 test 7832763
## 71 2521.817 2886.871 8.737733e+03 test 7832763
## 72 2521.817 2886.871 4.481431e+03 test 7832763
## 73 2521.817 2886.871 2.759567e+03 test 7832763
## 74 2521.817 2886.871 1.279303e+04 test 7832763
## 75 2521.817 2886.871 4.198839e+03 test 7832763
## 76 2521.817 2886.871 1.660483e+03 test 7832763
## 77 2521.817 2886.871 2.041345e+03 test 7832763
## 78 2521.817 2886.871 5.430765e+03 test 7832763
## 79 2521.817 2886.871 3.380229e+03 test 7832763
## 80 2521.817 2886.871 1.072128e+04 test 7832763
## 81 2521.817 2886.871 1.377064e+04 test 7832763
## 82 2521.817 2886.871 1.119159e+04 test 7832763
## 83 2521.817 2886.871 2.549689e+03 test 7832763
## 84 2521.817 2886.871 3.672252e+03 test 7832763
## 85 2521.817 2886.871 1.836815e+03 test 7832763
## 86 2521.817 2886.871 3.785635e+03 test 7832763
## 87 2521.817 2886.871 6.959572e+03 test 7832763
## 88 2521.817 2886.871 4.799314e+03 test 7832763
## 89 2521.817 2886.871 2.818817e+04 test 7832763
## 90 2521.817 2886.871 1.894276e+03 test 7832763
## 91 2521.817 2886.871 6.375837e+03 test 7832763
## 92 2521.817 2886.871 3.153965e+04 test 7832763
## 93 2521.817 2886.871 4.806791e+03 test 7832763
## 94 2521.817 2886.871 1.260448e+04 test 7832763
## 95 2521.817 2886.871 1.636959e+04 test 7832763
## 96 2521.817 2886.871 3.546113e+03 test 7832763
## 97 2521.817 2886.871 4.736061e+03 test 7832763
## 98 2521.817 2886.871 1.168328e+04 test 7832763
## 99 2521.817 2886.871 3.620763e+03 test 7832763
## 100 2521.817 2886.871 4.267876e+03 test 7832763
## 101 2521.817 2886.871 3.757050e+03 test 7832763
## 102 2521.817 2886.871 7.310942e+03 test 7832763
## 103 2521.817 2886.871 1.175817e+04 test 7832763
## 104 2521.817 2886.871 1.533345e+04 test 7832763
## 105 2521.817 2886.871 5.075575e+03 test 7832763
## 106 2521.817 2886.871 2.730035e+03 test 7832763
## 107 2521.817 2886.871 1.186092e+04 test 7832763
## 108 2521.817 2886.871 4.203030e+03 test 7832763
## 109 2521.817 2886.871 4.795234e+03 test 7832763
## 110 2521.817 2886.871 1.266524e+04 test 7832763
## 111 2521.817 2886.871 9.760472e+03 test 7832763
## 112 2521.817 2886.871 6.102719e+03 test 7832763
## 113 2521.817 2886.871 2.863957e+04 test 7832763
## 114 2521.817 2886.871 3.573585e+03 test 7832763
## 115 2521.817 2886.871 7.393838e+03 test 7832763
## 116 2521.817 2886.871 1.757728e+04 test 7832763
## 117 2521.817 2886.871 7.410959e+03 test 7832763
## 118 2521.817 2886.871 5.021296e+03 test 7832763
## 119 2521.817 2886.871 1.988138e+04 test 7832763
## 120 2521.817 2886.871 1.023490e+04 test 7832763
## 121 2521.817 2886.871 6.972927e+03 test 7832763
## 122 2521.817 2886.871 1.623260e+04 test 7832763
## 123 2521.817 2886.871 1.652213e+04 test 7832763
## 124 2521.817 2886.871 5.588477e+03 test 7832763
## 125 2521.817 2886.871 1.316697e+04 test 7832763
## 126 2521.817 2886.871 6.227926e+03 test 7832763
## 127 2521.817 2886.871 2.366972e+04 test 7832763
## 128 2521.817 2886.871 2.552080e+04 test 7832763
## 129 2521.817 2886.871 5.866282e+03 test 7832763
## 130 2521.817 2886.871 1.654030e+04 test 7832763
## 131 2521.817 2886.871 6.340523e+03 test 7832763
## 132 2521.817 2886.871 9.182071e+03 test 7832763
## 133 2521.817 2886.871 1.248436e+04 test 7832763
## 134 2521.817 2886.871 6.599146e+03 test 7832763
## 135 2521.817 2886.871 3.650093e+03 test 7832763
## 136 2521.817 2886.871 2.744356e+04 test 7832763
## 137 2521.817 2886.871 1.854217e+04 test 7832763
## 138 2521.817 2886.871 3.735228e+03 test 7832763
## 139 2521.817 2886.871 6.075874e+03 test 7832763
## 140 2521.817 2886.871 7.707141e+03 test 7832763
## 141 2521.817 2886.871 4.181315e+03 test 7832763
## 142 2521.817 2886.871 4.646068e+03 test 7832763
## 143 2521.817 2886.871 2.793961e+04 test 7832763
## 144 2521.817 2886.871 1.704622e+04 test 7832763
## 145 2521.817 2886.871 3.495012e+03 test 7832763
## 146 2521.817 2886.871 9.125514e+03 test 7832763
## 147 2521.817 2886.871 7.066558e+03 test 7832763
## 148 2521.817 2886.871 4.163955e+03 test 7832763
## 149 2521.817 2886.871 4.198452e+03 test 7832763
## 150 2521.817 2886.871 2.320560e+04 test 7832763
## 151 2521.817 2886.871 4.555238e+03 test 7832763
## 152 2521.817 2886.871 2.680525e+04 test 7832763
## 153 2521.817 2886.871 4.726399e+03 test 7832763
## 154 2521.817 2886.871 5.286584e+03 test 7832763
## 155 2521.817 2886.871 2.142962e+03 test 7832763
## 156 2521.817 2886.871 2.815807e+03 test 7832763
## 157 2521.817 2886.871 4.723200e+03 test 7832763
## 158 2521.817 2886.871 2.757962e+04 test 7832763
## 159 2521.817 2886.871 1.851948e+04 test 7832763
## 160 2521.817 2886.871 4.068506e+03 test 7832763
## 161 2521.817 2886.871 2.882056e+03 test 7832763
## 162 2521.817 2886.871 6.830969e+03 test 7832763
## 163 2521.817 2886.871 4.877273e+03 test 7832763
## 164 2521.817 2886.871 1.982685e+03 test 7832763
## 165 2521.817 2886.871 3.538880e+03 test 7832763
## 166 2521.817 2886.871 3.201541e+03 test 7832763
## 167 2521.817 2886.871 4.709518e+03 test 7832763
## 168 2521.817 2886.871 5.903633e+03 test 7832763
## 169 2521.817 2886.871 1.697491e+04 test 7832763
## 170 2521.817 2886.871 4.821994e+03 test 7832763
## 171 2521.817 2886.871 1.107407e+04 test 7832763
## 172 2521.817 2886.871 2.416696e+04 test 7832763
## 173 2521.817 2886.871 5.024751e+03 test 7832763
## 174 2521.817 2886.871 4.131985e+03 test 7832763
## 175 2521.817 2886.871 9.632231e+03 test 7832763
## 176 2521.817 2886.871 1.046594e+04 test 7832763
## 177 2521.817 2886.871 4.893326e+03 test 7832763
## 178 2521.817 2886.871 1.116642e+04 test 7832763
## 179 2521.817 2886.871 6.693746e+03 test 7832763
## 180 2521.817 2886.871 8.399761e+03 test 7832763
## 181 2521.817 2886.871 4.384908e+03 test 7832763
## 182 2521.817 2886.871 4.808823e+03 test 7832763
## 183 2521.817 2886.871 9.306625e+03 test 7832763
## 184 2521.817 2886.871 2.608098e+03 test 7832763
## 185 2521.817 2886.871 9.907404e+03 test 7832763
## 186 2521.817 2886.871 1.361141e+04 test 7832763
## 187 2521.817 2886.871 5.760814e+03 test 7832763
## 188 2521.817 2886.871 6.596584e+03 test 7832763
## 189 2521.817 2886.871 3.983789e+03 test 7832763
## 190 2521.817 2886.871 2.156991e+03 test 7832763
## 191 2521.817 2886.871 2.602221e+04 test 7832763
## 192 2521.817 2886.871 5.741521e+03 test 7832763
## 193 2521.817 2886.871 6.199465e+03 test 7832763
## 194 2521.817 2886.871 1.881005e+04 test 7832763
## 195 2521.817 2886.871 1.107247e+04 test 7832763
## 196 2521.817 2886.871 1.606694e+04 test 7832763
## 197 2521.817 2886.871 7.201868e+03 test 7832763
## 198 2521.817 2886.871 7.130603e+03 test 7832763
## 199 2521.817 2886.871 1.246338e+04 test 7832763
## 200 2521.817 2886.871 1.581407e+04 test 7832763
## 201 2521.817 2886.871 4.677508e+03 test 7832763
## 202 2521.817 2886.871 9.858965e+03 test 7832763
## 203 2521.817 2886.871 2.289635e+04 test 7832763
## 204 2521.817 2886.871 7.241660e+03 test 7832763
## 205 2521.817 2886.871 3.971168e+03 test 7832763
## 206 2521.817 2886.871 9.315631e+03 test 7832763
## 207 2521.817 2886.871 7.505639e+03 test 7832763
## 208 2521.817 2886.871 9.721541e+03 test 7832763
## 209 2521.817 2886.871 4.038345e+03 test 7832763
## 210 2521.817 2886.871 3.879460e+03 test 7832763
## 211 2521.817 2886.871 6.293522e+03 test 7832763
## 212 2521.817 2886.871 8.952399e+03 test 7832763
## 213 2521.817 2886.871 1.112540e+04 test 7832763
## 214 2521.817 2886.871 3.522842e+03 test 7832763
## 215 2521.817 2886.871 4.393625e+03 test 7832763
## 216 2521.817 2886.871 7.158159e+03 test 7832763
## 217 2521.817 2886.871 7.112034e+03 test 7832763
## 218 2521.817 2886.871 8.416355e+03 test 7832763
## 219 2521.817 2886.871 2.217514e+04 test 7832763
## 220 2521.817 2886.871 4.706860e+03 test 7832763
## 221 2521.817 2886.871 4.865057e+03 test 7832763
## 222 2521.817 2886.871 2.189117e+04 test 7832763
## 223 2521.817 2886.871 8.119945e+03 test 7832763
## 224 2521.817 2886.871 9.912939e+03 test 7832763
## 225 2521.817 2886.871 8.537597e+03 test 7832763
## 226 2521.817 2886.871 1.236317e+04 test 7832763
## 227 2521.817 2886.871 2.861244e+03 test 7832763
## 228 2521.817 2886.871 5.353494e+03 test 7832763
## 229 2521.817 2886.871 4.366073e+03 test 7832763
## 230 2521.817 2886.871 6.417170e+03 test 7832763
## 231 2521.817 2886.871 5.697350e+03 test 7832763
## 232 2521.817 2886.871 7.143887e+03 test 7832763
## 233 2521.817 2886.871 3.380401e+03 test 7832763
## 234 2521.817 2886.871 3.090814e+03 test 7832763
## 235 2521.817 2886.871 3.969695e+03 test 7832763
## 236 2521.817 2886.871 3.581235e+03 test 7832763
## 237 2521.817 2886.871 7.163400e+03 test 7832763
## 238 2521.817 2886.871 2.741747e+03 test 7832763
## 239 2521.817 2886.871 2.858030e+03 test 7832763
## 240 2521.817 2886.871 3.914290e+03 test 7832763
## 241 2521.817 2886.871 5.384754e+03 test 7832763
## 242 2521.817 2886.871 7.463688e+03 test 7832763
## 243 2521.817 2886.871 4.211312e+03 test 7832763
## 244 2521.817 2886.871 4.064738e+03 test 7832763
## 245 2521.817 2886.871 6.961295e+03 test 7832763
## 246 2521.817 2886.871 4.374795e+03 test 7832763
## 247 2521.817 2886.871 1.270615e+04 test 7832763
## 248 2521.817 2886.871 2.248482e+03 test 7832763
## 249 2521.817 2886.871 7.104528e+03 test 7832763
## 250 2521.817 2886.871 5.006035e+03 test 7832763
## 251 2521.817 2886.871 3.209915e+03 test 7832763
## 252 2521.817 2886.871 1.179493e+04 test 7832763
## 253 2521.817 2886.871 4.901747e+03 test 7832763
## 254 2521.817 2886.871 4.947635e+03 test 7832763
## 255 2521.817 2886.871 1.842521e+04 test 7832763
## 256 2521.817 2886.871 7.405750e+03 test 7832763
## 257 2521.817 2886.871 1.360194e+04 test 7832763
## 258 2521.817 2886.871 3.797426e+03 test 7832763
## 259 2521.817 2886.871 7.659004e+03 test 7832763
## 260 2521.817 2886.871 6.134713e+03 test 7832763
## 261 2521.817 2886.871 8.048703e+03 test 7832763
## 262 2521.817 2886.871 5.359043e+03 test 7832763
## 263 2521.817 2886.871 5.717094e+03 test 7832763
## 264 2521.817 2886.871 1.017139e+04 test 7832763
## 265 2521.817 2886.871 7.366863e+03 test 7832763
## 266 2521.817 2886.871 1.251853e+04 test 7832763
## 267 2521.817 2886.871 1.529829e+04 test 7832763
## 268 2521.817 2886.871 1.714704e+04 test 7832763
## 269 2521.817 2886.871 9.227425e+03 test 7832763
## 270 2521.817 2886.871 9.653099e+03 test 7832763
## 271 2521.817 2886.871 1.037031e+04 test 7832763
## 272 2521.817 2886.871 6.032687e+03 test 7832763
## 273 2521.817 2886.871 5.800741e+03 test 7832763
## 274 2521.817 2886.871 7.614943e+03 test 7832763
## 275 2521.817 2886.871 5.947053e+03 test 7832763
## 276 2521.817 2886.871 5.636380e+03 test 7832763
## 277 2521.817 2886.871 8.734267e+03 test 7832763
## 278 2521.817 2886.871 1.749774e+04 test 7832763
## 279 2521.817 2886.871 1.249846e+04 test 7832763
## 280 2521.817 2886.871 1.233489e+04 test 7832763
## 281 2521.817 2886.871 7.657309e+03 test 7832763
## 282 2521.817 2886.871 1.217832e+04 test 7832763
## 283 2521.817 2886.871 3.890663e+03 test 7832763
## 284 2521.817 2886.871 4.518941e+03 test 7832763
## 285 2521.817 2886.871 6.942432e+03 test 7832763
## 286 2521.817 2886.871 3.942484e+03 test 7832763
## 287 2521.817 2886.871 6.863673e+03 test 7832763
## 288 2521.817 2886.871 1.091013e+04 test 7832763
## 289 2521.817 2886.871 8.090043e+03 test 7832763
## 290 2521.817 2886.871 5.345447e+03 test 7832763
## 291 2521.817 2886.871 9.339763e+03 test 7832763
## 292 2521.817 2886.871 4.935875e+03 test 7832763
## 293 2521.817 2886.871 6.125522e+03 test 7832763
## 294 2521.817 2886.871 8.074679e+03 test 7832763
## 295 2521.817 2886.871 8.843473e+03 test 7832763
## 296 2521.817 2886.871 4.455209e+03 test 7832763
## 297 2521.817 2886.871 2.512169e+03 test 7832763
## 298 2521.817 2886.871 1.473081e+04 test 7832763
## 299 2521.817 2886.871 4.595187e+03 test 7832763
## 300 2521.817 2886.871 1.108614e+04 test 7832763
## 301 2521.817 2886.871 7.138026e+03 test 7832763
## 302 2521.817 2886.871 4.856586e+03 test 7832763
## 303 2521.817 2886.871 7.941856e+03 test 7832763
## 304 2521.817 2886.871 3.472456e+03 test 7832763
## 305 2521.817 2886.871 1.073482e+04 test 7832763
## 306 2521.817 2886.871 4.635982e+03 test 7832763
## 307 2521.817 2886.871 3.426963e+03 test 7832763
## 308 2521.817 2886.871 1.195126e+04 test 7832763
## 309 2521.817 2886.871 6.168606e+03 test 7832763
## 310 2521.817 2886.871 8.683794e+03 test 7832763
## 311 2521.817 2886.871 1.716927e+04 test 7832763
## 312 2521.817 2886.871 2.906631e+03 test 7832763
## 313 2521.817 2886.871 7.618002e+03 test 7832763
## 314 2521.817 2886.871 6.196710e+03 test 7832763
## 315 2521.817 2886.871 5.441461e+03 test 7832763
## 316 2521.817 2886.871 9.269441e+03 test 7832763
## 317 2521.817 2886.871 8.854487e+03 test 7832763
## 318 2521.817 2886.871 8.861776e+03 test 7832763
## 319 2521.817 2886.871 5.389927e+03 test 7832763
## 320 2521.817 2886.871 4.091138e+03 test 7832763
## 321 2521.817 2886.871 1.415468e+04 test 7832763
## 322 2521.817 2886.871 2.764069e+03 test 7832763
## 323 2521.817 2886.871 5.209135e+03 test 7832763
## 324 2521.817 2886.871 5.099750e+03 test 7832763
## 325 2521.817 2886.871 8.460065e+03 test 7832763
## 326 2521.817 2886.871 1.130786e+04 test 7832763
## 327 2521.817 2886.871 1.197935e+04 test 7832763
## 328 2521.817 2886.871 8.219575e+03 test 7832763
## 329 2521.817 2886.871 4.817368e+03 test 7832763
## 330 2521.817 2886.871 1.301721e+04 test 7832763
## 331 2521.817 2886.871 2.640397e+03 test 7832763
## 332 2521.817 2886.871 8.841107e+03 test 7832763
## 333 2521.817 2886.871 6.060839e+03 test 7832763
## 334 2521.817 2886.871 5.004473e+03 test 7832763
## 335 2521.817 2886.871 6.664823e+03 test 7832763
## 336 2521.817 2886.871 4.273752e+03 test 7832763
## 337 2521.817 2886.871 1.575320e+04 test 7832763
## 338 2521.817 2886.871 4.675784e+03 test 7832763
## 339 2521.817 2886.871 7.045563e+03 test 7832763
## 340 2521.817 2886.871 2.661638e+03 test 7832763
## 341 2521.817 2886.871 9.106780e+03 test 7832763
## 342 2521.817 2886.871 4.027112e+03 test 7832763
## 343 2521.817 2886.871 6.473233e+03 test 7832763
## 344 2521.817 2886.871 3.136168e+03 test 7832763
## 345 2521.817 2886.871 4.052864e+03 test 7832763
## 346 2521.817 2886.871 6.379968e+03 test 7832763
## 347 2521.817 2886.871 1.031075e+04 test 7832763
## 348 2521.817 2886.871 1.022998e+04 test 7832763
## 349 2521.817 2886.871 2.376479e+03 test 7832763
## 350 2521.817 2886.871 1.119894e+04 test 7832763
## 351 2521.817 2886.871 7.361272e+03 test 7832763
## 352 2521.817 2886.871 1.087740e+04 test 7832763
## 353 2521.817 2886.871 6.504759e+03 test 7832763
## 354 2521.817 2886.871 9.313784e+03 test 7832763
## 355 2521.817 2886.871 3.231452e+03 test 7832763
## 356 2521.817 2886.871 3.583837e+03 test 7832763
## 357 2521.817 2886.871 7.833784e+03 test 7832763
## 358 2521.817 2886.871 1.527030e+03 test 7832763
## 359 2521.817 2886.871 4.715889e+03 test 7832763
## 360 2521.817 2886.871 1.242867e+03 test 7832763
## 361 2521.817 2886.871 6.678559e+03 test 7832763
## 362 2521.817 2886.871 1.089342e+04 test 7832763
## 363 2521.817 2886.871 9.731820e+03 test 7832763
## 364 2521.817 2886.871 1.115757e+04 test 7832763
## 365 2521.817 2886.871 3.583954e+03 test 7832763
## 366 2521.817 2886.871 1.703344e+03 test 7832763
## 367 2521.817 2886.871 4.897368e+03 test 7832763
## 368 2521.817 2886.871 2.415995e+03 test 7832763
## 369 2521.817 2886.871 1.150870e+04 test 7832763
## 370 2521.817 2886.871 7.723470e+03 test 7832763
## 371 2521.817 2886.871 8.627857e+03 test 7832763
## 372 2521.817 2886.871 2.991250e+03 test 7832763
## 373 2521.817 2886.871 6.725771e+03 test 7832763
## 374 2521.817 2886.871 3.146978e+03 test 7832763
## 375 2521.817 2886.871 5.346213e+03 test 7832763
## 376 2521.817 2886.871 9.900406e+03 test 7832763
## 377 2521.817 2886.871 3.045602e+03 test 7832763
## 378 2521.817 2886.871 5.819241e+03 test 7832763
## 379 2521.817 2886.871 8.429635e+03 test 7832763
## 380 2521.817 2886.871 6.937038e+03 test 7832763
## 381 2521.817 2886.871 4.888432e+03 test 7832763
## 382 2521.817 2886.871 2.037732e+03 test 7832763
## 383 2521.817 2886.871 2.721788e+03 test 7832763
## 384 2521.817 2886.871 8.005219e+03 test 7832763
## 385 2521.817 2886.871 7.312277e+03 test 7832763
## 386 2521.817 2886.871 1.382173e+04 test 7832763
## 387 2521.817 2886.871 5.489798e+03 test 7832763
## 388 2521.817 2886.871 5.545404e+03 test 7832763
## 389 2521.817 2886.871 1.569079e+03 test 7832763
## 390 2521.817 2886.871 7.806466e+03 test 7832763
## 391 2521.817 2886.871 7.087711e+03 test 7832763
## 392 2521.817 2886.871 4.307886e+03 test 7832763
## 393 2521.817 2886.871 8.328280e+03 test 7832763
## 394 2521.817 2886.871 7.413556e+03 test 7832763
## 395 2521.817 2886.871 8.215035e+03 test 7832763
## 396 2521.817 2886.871 7.283278e+03 test 7832763
## 397 2521.817 2886.871 4.170692e+03 test 7832763
## 398 2521.817 2886.871 7.638299e+03 test 7832763
## 399 2521.817 2886.871 7.175754e+03 test 7832763
## 400 2521.817 2886.871 2.318090e+03 test 7832763
## 401 2521.817 2886.871 4.515092e+03 test 7832763
## 402 2521.817 2886.871 2.842257e+03 test 7832763
## 403 2521.817 2886.871 3.345129e+03 test 7832763
## 404 2521.817 2886.871 6.652614e+03 test 7832763
## 405 2521.817 2886.871 3.918749e+03 test 7832763
## 406 2521.817 2886.871 5.251129e+03 test 7832763
## 407 2521.817 2886.871 4.866412e+03 test 7832763
## 408 2521.817 2886.871 5.914858e+03 test 7832763
## 409 2521.817 2886.871 4.467919e+03 test 7832763
## 410 2521.817 2886.871 7.935967e+03 test 7832763
## 411 2521.817 2886.871 6.474035e+03 test 7832763
## 412 2521.817 2886.871 8.909229e+03 test 7832763
## 413 2521.817 2886.871 4.325130e+03 test 7832763
## 414 2521.817 2886.871 4.251252e+03 test 7832763
## 415 2521.817 2886.871 2.872750e+03 test 7832763
## 416 2521.817 2886.871 2.917362e+03 test 7832763
## 417 2521.817 2886.871 7.917492e+03 test 7832763
## 418 2521.817 2886.871 4.223209e+03 test 7832763
## 419 2521.817 2886.871 4.530123e+03 test 7832763
## 420 2521.817 2886.871 6.074206e+03 test 7832763
## 421 2521.817 2886.871 4.418637e+03 test 7832763
## 422 2521.817 2886.871 5.905718e+03 test 7832763
## 423 2521.817 2886.871 2.746700e+03 test 7832763
## 424 2521.817 2886.871 5.878028e+03 test 7832763
## 425 2521.817 2886.871 3.485385e+03 test 7832763
## 426 2521.817 2886.871 2.597934e+03 test 7832763
## 427 2521.817 2886.871 3.964343e+03 test 7832763
## 428 2521.817 2886.871 3.656890e+03 test 7832763
## 429 2521.817 2886.871 4.491874e+03 test 7832763
## 430 2521.817 2886.871 2.686802e+03 test 7832763
## 431 2521.817 2886.871 3.329294e+03 test 7832763
## 432 2521.817 2886.871 4.620185e+03 test 7832763
## 433 2521.817 2886.871 3.579896e+03 test 7832763
## 434 2521.817 2886.871 3.849192e+03 test 7832763
## 435 2521.817 2886.871 2.372109e+03 test 7832763
## 436 2521.817 2886.871 4.572722e+03 test 7832763
## 437 2521.817 2886.871 5.176798e+03 test 7832763
## 438 2521.817 2886.871 3.416018e+03 test 7832763
## 439 2521.817 2886.871 5.950306e+03 test 7832763
## 440 2521.817 2886.871 6.053674e+03 test 7832763
## 441 2521.817 2886.871 3.160139e+03 test 7832763
## 442 2521.817 2886.871 5.182795e+03 test 7832763
## 443 2521.817 2886.871 5.835747e+03 test 7832763
## 444 2521.817 2886.871 5.377140e+03 test 7832763
## 445 2521.817 2886.871 3.583578e+03 test 7832763
## 446 2521.817 2886.871 3.980229e+03 test 7832763
## 447 2521.817 2886.871 2.395352e+03 test 7832763
## 448 2521.817 2886.871 3.107923e+03 test 7832763
## 449 2521.817 2886.871 2.652582e+03 test 7832763
## 450 2521.817 2886.871 2.320616e+03 test 7832763
## 451 2521.817 2886.871 2.710768e+03 test 7832763
## 452 2521.817 2886.871 4.211191e+03 test 7832763
## 453 2521.817 2886.871 2.372720e+03 test 7832763
## 454 2521.817 2886.871 2.532251e+03 test 7832763
## 455 2521.817 2886.871 3.155045e+03 test 7832763
## 456 2521.817 2886.871 3.702103e+03 test 7832763
## 457 2521.817 2886.871 4.600294e+03 test 7832763
## 458 2521.817 2886.871 3.384823e+03 test 7832763
## 459 2521.817 2886.871 5.406598e+03 test 7832763
## 460 2521.817 2886.871 3.226657e+03 test 7832763
## 461 2521.817 2886.871 4.973995e+03 test 7832763
## 462 2521.817 2886.871 3.765447e+03 test 7832763
## 463 2521.817 2886.871 5.241031e+03 test 7832763
## 464 2521.817 2886.871 3.799065e+03 test 7832763
## 465 2521.817 2886.871 3.907883e+03 test 7832763
## 466 2521.817 2886.871 2.526996e+03 test 7832763
## 467 2521.817 2886.871 5.734339e+03 test 7832763
## 468 2521.817 2886.871 2.688042e+03 test 7832763
## 469 2521.817 2886.871 8.061500e+03 test 7832763
## 470 2521.817 2886.871 2.740021e+03 test 7832763
## 471 2521.817 2886.871 2.259969e+03 test 7832763
## 472 2521.817 2886.871 2.399137e+03 test 7832763
## 473 2521.817 2886.871 2.660176e+03 test 7832763
## 474 2521.817 2886.871 4.412140e+03 test 7832763
## 475 2521.817 2886.871 6.273336e+03 test 7832763
## 476 2521.817 2886.871 6.721316e+03 test 7832763
## 477 2521.817 2886.871 4.264259e+03 test 7832763
## 478 2521.817 2886.871 3.649179e+03 test 7832763
## 479 2521.817 2886.871 6.118685e+03 test 7832763
## 480 2521.817 2886.871 2.741857e+03 test 7832763
## 481 2521.817 2886.871 3.355727e+03 test 7832763
## 482 2521.817 2886.871 3.209166e+03 test 7832763
## 483 2521.817 2886.871 6.482037e+03 test 7832763
## 484 2521.817 2886.871 2.991975e+03 test 7832763
## 485 2521.817 2886.871 2.324855e+03 test 7832763
## 486 2521.817 2886.871 3.000250e+03 test 7832763
## 487 2521.817 2886.871 3.238450e+03 test 7832763
## 488 2521.817 2886.871 2.409318e+03 test 7832763
## 489 2521.817 2886.871 4.565838e+03 test 7832763
## 490 2521.817 2886.871 3.708418e+03 test 7832763
## 491 2521.817 2886.871 2.421961e+03 test 7832763
## 492 2521.817 2886.871 2.505872e+03 test 7832763
## 493 2521.817 2886.871 1.808171e+03 test 7832763
## 494 2521.817 2886.871 3.696503e+03 test 7832763
## 495 2521.817 2886.871 5.570325e+03 test 7832763
## 496 2521.817 2886.871 2.358377e+03 test 7832763
## 497 2521.817 2886.871 2.470127e+03 test 7832763
## 498 2521.817 2886.871 2.947404e+03 test 7832763
## 499 2521.817 2886.871 2.340032e+03 test 7832763
## 500 2521.817 2886.871 2.334752e+03 test 7832763
## 501 2521.817 2886.871 2.404838e+03 test 7832763
## 502 2521.817 2886.871 2.455584e+03 test 7832763
## 503 2521.817 2886.871 3.583694e+03 test 7832763
## 504 2521.817 2886.871 4.892579e+03 test 7832763
## 505 2521.817 2886.871 2.899955e+03 test 7832763
## 506 2521.817 2886.871 2.389336e+03 test 7832763
## 507 2521.817 2886.871 3.034747e+03 test 7832763
## 508 2521.817 2886.871 2.490356e+03 test 7832763
## 509 2521.817 2886.871 2.646254e+03 test 7832763
## 510 2521.817 2886.871 2.383431e+03 test 7832763
## 511 2521.817 2886.871 3.729053e+03 test 7832763
## 512 2521.817 2886.871 2.427705e+03 test 7832763
## 513 2521.817 2886.871 2.941288e+03 test 7832763
## 514 2521.817 2886.871 5.312030e+03 test 7832763
## 515 2521.817 2886.871 3.199881e+03 test 7832763
## 516 2521.817 2886.871 2.392400e+03 test 7832763
## 517 2521.817 2886.871 3.186739e+03 test 7832763
## 518 2521.817 2886.871 1.807488e+03 test 7832763
## 519 2521.817 2886.871 2.364602e+03 test 7832763
## 520 2521.817 2886.871 2.094457e+03 test 7832763
## 521 2521.817 2886.871 2.331855e+03 test 7832763
## 522 2521.817 2886.871 3.920468e+03 test 7832763
## 523 2521.817 2886.871 5.209888e+03 test 7832763
## 524 2521.817 2886.871 3.750908e+03 test 7832763
## 525 2521.817 2886.871 3.871036e+03 test 7832763
## 526 2521.817 2886.871 2.417837e+03 test 7832763
## 527 2521.817 2886.871 2.340699e+03 test 7832763
## 528 2521.817 2886.871 1.999265e+03 test 7832763
## 529 2521.817 2886.871 2.572656e+03 test 7832763
## 530 2521.817 2886.871 2.390403e+03 test 7832763
## 531 2521.817 2886.871 2.400437e+03 test 7832763
## 532 2521.817 2886.871 2.593506e+03 test 7832763
## 533 2521.817 2886.871 3.423094e+03 test 7832763
## 534 2521.817 2886.871 3.507135e+03 test 7832763
## 535 2521.817 2886.871 4.090847e+03 test 7832763
## 536 2521.817 2886.871 2.062230e+03 test 7832763
## 537 2521.817 2886.871 2.501594e+03 test 7832763
## 538 2521.817 2886.871 2.350039e+03 test 7832763
## 539 2521.817 2886.871 2.499742e+03 test 7832763
## 540 2521.817 2886.871 3.749959e+03 test 7832763
## 541 2521.817 2886.871 5.558201e+03 test 7832763
## 542 2521.817 2886.871 2.403180e+03 test 7832763
## 543 2521.817 2886.871 6.466150e+03 test 7832763
## 544 2521.817 2886.871 6.111424e+03 test 7832763
## 545 2521.817 2886.871 2.518500e+03 test 7832763
## 546 2521.817 2886.871 4.310999e+03 test 7832763
## 547 2521.817 2886.871 2.794635e+03 test 7832763
## 548 2521.817 2886.871 2.128081e+03 test 7832763
## 549 2521.817 2886.871 2.399203e+03 test 7832763
## 550 2521.817 2886.871 2.658762e+03 test 7832763
## 551 2521.817 2886.871 2.693062e+03 test 7832763
## 552 2521.817 2886.871 1.937274e+03 test 7832763
## 553 2521.817 2886.871 2.522889e+03 test 7832763
## 554 2521.817 2886.871 3.447634e+03 test 7832763
## 555 2521.817 2886.871 2.946871e+03 test 7832763
## 556 2521.817 2886.871 2.341595e+03 test 7832763
## 557 2521.817 2886.871 2.113436e+03 test 7832763
## 558 2521.817 2886.871 2.022440e+03 test 7832763
## 559 2521.817 2886.871 3.934087e+03 test 7832763
## 560 2521.817 2886.871 4.239741e+03 test 7832763
## 561 2521.817 2886.871 4.134688e+03 test 7832763
## 562 2521.817 2886.871 2.384117e+03 test 7832763
## 563 2521.817 2886.871 2.385027e+03 test 7832763
## 564 2521.817 2886.871 2.285841e+03 test 7832763
## 565 2521.817 2886.871 2.282571e+03 test 7832763
## 566 2521.817 2886.871 2.364176e+03 test 7832763
## 567 2521.817 2886.871 2.684300e+03 test 7832763
## 568 2521.817 2886.871 3.622772e+03 test 7832763
## 569 2521.817 2886.871 3.415295e+03 test 7832763
## 570 2521.817 2886.871 2.357560e+03 test 7832763
## 571 2521.817 2886.871 2.363528e+03 test 7832763
## 572 2521.817 2886.871 2.435260e+03 test 7832763
## 573 2521.817 2886.871 5.000596e+03 test 7832763
## 574 2521.817 2886.871 4.113083e+03 test 7832763
## 575 2521.817 2886.871 2.481230e+03 test 7832763
## 576 2521.817 2886.871 2.756715e+03 test 7832763
## 577 2521.817 2886.871 2.467554e+03 test 7832763
## 578 2521.817 2886.871 2.482125e+03 test 7832763
## 579 2521.817 2886.871 3.614192e+03 test 7832763
## 580 2521.817 2886.871 2.281238e+03 test 7832763
## 581 2521.817 2886.871 2.615856e+03 test 7832763
## 582 2521.817 2886.871 3.170221e+03 test 7832763
## 583 2521.817 2886.871 3.301620e+03 test 7832763
## 584 2521.817 2886.871 2.833629e+03 test 7832763
## 585 2521.817 2886.871 4.023587e+03 test 7832763
## 586 2521.817 2886.871 2.522493e+03 test 7832763
## 587 2521.817 2886.871 2.367754e+03 test 7832763
## 588 2521.817 2886.871 2.947741e+03 test 7832763
## 589 2521.817 2886.871 2.912007e+03 test 7832763
## 590 2521.817 2886.871 2.473984e+03 test 7832763
## 591 2521.817 2886.871 3.147563e+03 test 7832763
## 592 2521.817 2886.871 2.016037e+03 test 7832763
## 593 2521.817 2886.871 3.797411e+03 test 7832763
## 594 2521.817 2886.871 4.254873e+03 test 7832763
## 595 2521.817 2886.871 4.695170e+03 test 7832763
## 596 2521.817 2886.871 3.533562e+03 test 7832763
## 597 2521.817 2886.871 2.256774e+03 test 7832763
## 598 2521.817 2886.871 4.186798e+03 test 7832763
## 599 2521.817 2886.871 2.310195e+03 test 7832763
## 600 2521.817 2886.871 2.879528e+03 test 7832763
## 601 2521.817 2886.871 2.386665e+03 test 7832763
## 602 2521.817 2886.871 1.983397e+03 test 7832763
## 603 2521.817 2886.871 4.140184e+03 test 7832763
## 604 2521.817 2886.871 2.302868e+03 test 7832763
## 605 2521.817 2886.871 2.589042e+03 test 7832763
## 606 2521.817 2886.871 2.574169e+03 test 7832763
## 607 2521.817 2886.871 4.575379e+03 test 7832763
## 608 2521.817 2886.871 2.349441e+03 test 7832763
## 609 2521.817 2886.871 1.673526e+03 test 7832763
## 610 2521.817 2886.871 1.908898e+03 test 7832763
## 611 2521.817 2886.871 3.333498e+03 test 7832763
## 612 2521.817 2886.871 1.927631e+03 test 7832763
## 613 2521.817 2886.871 2.464874e+03 test 7832763
## 614 2521.817 2886.871 2.798327e+03 test 7832763
## 615 2521.817 2886.871 2.491161e+03 test 7832763
## 616 2521.817 2886.871 2.600471e+03 test 7832763
## 617 2521.817 2886.871 2.183736e+03 test 7832763
## 618 2521.817 2886.871 2.322165e+03 test 7832763
## 619 2521.817 2886.871 2.512416e+03 test 7832763
## 620 2521.817 2886.871 3.492558e+03 test 7832763
## 621 2521.817 2886.871 3.856122e+03 test 7832763
## 622 2521.817 2886.871 2.602673e+03 test 7832763
## 623 2521.817 2886.871 2.964199e+03 test 7832763
## 624 2521.817 2886.871 2.787216e+03 test 7832763
## 625 2521.817 2886.871 2.655506e+03 test 7832763
## 626 2521.817 2886.871 4.806012e+03 test 7832763
## 627 2521.817 2886.871 2.143795e+03 test 7832763
## 628 2521.817 2886.871 3.211902e+03 test 7832763
## 629 2521.817 2886.871 3.317208e+03 test 7832763
## 630 2521.817 2886.871 2.342093e+03 test 7832763
## 631 2521.817 2886.871 3.748176e+03 test 7832763
## 632 2521.817 2886.871 2.747302e+03 test 7832763
## 633 2521.817 2886.871 2.952126e+03 test 7832763
## 634 2521.817 2886.871 2.823435e+03 test 7832763
## 635 2521.817 2886.871 2.915410e+03 test 7832763
## 636 2521.817 2886.871 2.737948e+03 test 7832763
## 637 2521.817 2886.871 2.402711e+03 test 7832763
## 638 2521.817 2886.871 3.158849e+03 test 7832763
## 639 2521.817 2886.871 1.866481e+03 test 7832763
## 640 2521.817 2886.871 2.335555e+03 test 7832763
## 641 2521.817 2886.871 3.256899e+03 test 7832763
## 642 2521.817 2886.871 3.313262e+03 test 7832763
## 643 2521.817 2886.871 2.424043e+03 test 7832763
## 644 2521.817 2886.871 1.784518e+03 test 7832763
## 645 2521.817 2886.871 2.434841e+03 test 7832763
## 646 2521.817 2886.871 2.264519e+03 test 7832763
## 647 2521.817 2886.871 2.324344e+03 test 7832763
## 648 2521.817 2886.871 1.867122e+03 test 7832763
## 649 2521.817 2886.871 2.013985e+03 test 7832763
## 650 2521.817 2886.871 2.387724e+03 test 7832763
## 651 2521.817 2886.871 1.860230e+03 test 7832763
## 652 2521.817 2886.871 2.037923e+03 test 7832763
## 653 2521.817 2886.871 2.382078e+03 test 7832763
## 654 2521.817 2886.871 2.458150e+03 test 7832763
## 655 2521.817 2886.871 1.656897e+03 test 7832763
## 656 2521.817 2886.871 2.107691e+03 test 7832763
## 657 2521.817 2886.871 2.702563e+03 test 7832763
## 658 2521.817 2886.871 3.691898e+03 test 7832763
## 659 2521.817 2886.871 3.737834e+03 test 7832763
## 660 2521.817 2886.871 1.595289e+03 test 7832763
## 661 2521.817 2886.871 2.712812e+03 test 7832763
## 662 2521.817 2886.871 2.487411e+03 test 7832763
## 663 2521.817 2886.871 2.169382e+03 test 7832763
## 664 2521.817 2886.871 2.211225e+03 test 7832763
## 665 2521.817 2886.871 3.639032e+03 test 7832763
## 666 2521.817 2886.871 3.363845e+03 test 7832763
## 667 2521.817 2886.871 3.034186e+03 test 7832763
## 668 2521.817 2886.871 2.420014e+03 test 7832763
## 669 2521.817 2886.871 1.599561e+03 test 7832763
## 670 2521.817 2886.871 3.496206e+03 test 7832763
## 671 2521.817 2886.871 2.372703e+03 test 7832763
## 672 2521.817 2886.871 2.333922e+03 test 7832763
## 673 2521.817 2886.871 3.233724e+03 test 7832763
## 674 2521.817 2886.871 2.614275e+03 test 7832763
## 675 2521.817 2886.871 2.592531e+03 test 7832763
## 676 2521.817 2886.871 3.233855e+03 test 7832763
## 677 2521.817 2886.871 2.528648e+03 test 7832763
## 678 2521.817 2886.871 2.422578e+03 test 7832763
## 679 2521.817 2886.871 2.583166e+03 test 7832763
## 680 2521.817 2886.871 2.581568e+03 test 7832763
## 681 2521.817 2886.871 2.596911e+03 test 7832763
## 682 2521.817 2886.871 2.368774e+03 test 7832763
## 683 2521.817 2886.871 2.312838e+03 test 7832763
## 684 2521.817 2886.871 2.377555e+03 test 7832763
## 685 2521.817 2886.871 3.129341e+03 test 7832763
## 686 2521.817 2886.871 4.308361e+03 test 7832763
## 687 2521.817 2886.871 2.760518e+03 test 7832763
## 688 2521.817 2886.871 3.388101e+03 test 7832763
## 689 2521.817 2886.871 2.471078e+03 test 7832763
## 690 2521.817 2886.871 2.048405e+03 test 7832763
## 691 2521.817 2886.871 2.233798e+03 test 7832763
## 692 2521.817 2886.871 2.722639e+03 test 7832763
## 693 2521.817 2886.871 2.603486e+03 test 7832763
## 694 2521.817 2886.871 2.155516e+03 test 7832763
## 695 2521.817 2886.871 2.732518e+03 test 7832763
## 696 2521.817 2886.871 2.258946e+03 test 7832763
## 697 2521.817 2886.871 2.322554e+03 test 7832763
## 698 2521.817 2886.871 2.241809e+03 test 7832763
## 699 2521.817 2886.871 3.254332e+03 test 7832763
## 700 2521.817 2886.871 1.581371e+03 test 7832763
## 701 2521.817 2886.871 1.495570e+03 test 7832763
## 702 2521.817 2886.871 1.899666e+03 test 7832763
## 703 2521.817 2886.871 2.050146e+03 test 7832763
## 704 2521.817 2886.871 2.168532e+03 test 7832763
## 705 2521.817 2886.871 2.302691e+03 test 7832763
## 706 2521.817 2886.871 2.569415e+03 test 7832763
## 707 2521.817 2886.871 2.805168e+03 test 7832763
## 708 2521.817 2886.871 2.647293e+03 test 7832763
## 709 2521.817 2886.871 3.211584e+03 test 7832763
## 710 2521.817 2886.871 2.950954e+03 test 7832763
## 711 2521.817 2886.871 2.443774e+03 test 7832763
## 712 2521.817 2886.871 3.295799e+03 test 7832763
## 713 2521.817 2886.871 2.732777e+03 test 7832763
## 714 2521.817 2886.871 3.678067e+03 test 7832763
## 715 2521.817 2886.871 2.224820e+03 test 7832763
## 716 2521.817 2886.871 2.841957e+03 test 7832763
## 717 2521.817 2886.871 2.353125e+03 test 7832763
## 718 2521.817 2886.871 2.144530e+03 test 7832763
## 719 2521.817 2886.871 2.280670e+03 test 7832763
## 720 2521.817 2886.871 2.574032e+03 test 7832763
## 721 2521.817 2886.871 2.118318e+03 test 7832763
## 722 2521.817 2886.871 2.357351e+03 test 7832763
## 723 2521.817 2886.871 3.054345e+03 test 7832763
## 724 2521.817 2886.871 2.599109e+03 test 7832763
## 725 2521.817 2886.871 3.865274e+03 test 7832763
## 726 2521.817 2886.871 2.306957e+03 test 7832763
## 727 2521.817 2886.871 2.776923e+03 test 7832763
## 728 2521.817 2886.871 3.272496e+03 test 7832763
## 729 2521.817 2886.871 1.933187e+03 test 7832763
## 730 2521.817 2886.871 2.231841e+03 test 7832763
## 731 2521.817 2886.871 2.265451e+03 test 7832763
## 732 2521.817 2886.871 2.217312e+03 test 7832763
## 733 2521.817 2886.871 3.535094e+03 test 7832763
## 734 2521.817 2886.871 2.157189e+03 test 7832763
## 735 2521.817 2886.871 2.675695e+03 test 7832763
## 736 2521.817 2886.871 2.369747e+03 test 7832763
## 737 2521.817 2886.871 2.390317e+03 test 7832763
## 738 2521.817 2886.871 1.471861e+03 test 7832763
## 739 2521.817 2886.871 3.185269e+03 test 7832763
## 740 2521.817 2886.871 1.720559e+03 test 7832763
## 741 2521.817 2886.871 2.998251e+03 test 7832763
## 742 2521.817 2886.871 3.234313e+03 test 7832763
## 743 2521.817 2886.871 2.297982e+03 test 7832763
## 744 2521.817 2886.871 2.816125e+03 test 7832763
## 745 2521.817 2886.871 1.634296e+03 test 7832763
## 746 2521.817 2886.871 1.933590e+03 test 7832763
## 747 2521.817 2886.871 1.972281e+03 test 7832763
## 748 2521.817 2886.871 3.535189e+03 test 7832763
## 749 2521.817 2886.871 1.691414e+03 test 7832763
## 750 2521.817 2886.871 1.504380e+03 test 7832763
## 751 2521.817 2886.871 1.979959e+03 test 7832763
## 752 2521.817 2886.871 2.523821e+03 test 7832763
## 753 2521.817 2886.871 2.629825e+03 test 7832763
## 754 2521.817 2886.871 2.392274e+03 test 7832763
## 755 2521.817 2886.871 2.343681e+03 test 7832763
## 756 2521.817 2886.871 1.819226e+03 test 7832763
## 757 2521.817 2886.871 2.659447e+03 test 7832763
## 758 2521.817 2886.871 1.508046e+03 test 7832763
## 759 2521.817 2886.871 2.041967e+03 test 7832763
## 760 2521.817 2886.871 2.300668e+03 test 7832763
## 761 2521.817 2886.871 4.067526e+03 test 7832763
## 762 2521.817 2886.871 3.109210e+03 test 7832763
## 763 2521.817 2886.871 2.439752e+03 test 7832763
## 764 2521.817 2886.871 2.467576e+03 test 7832763
## 765 2521.817 2886.871 2.774329e+03 test 7832763
## 766 2521.817 2886.871 2.571111e+03 test 7832763
## 767 2521.817 2886.871 2.194376e+03 test 7832763
## 768 2521.817 2886.871 1.922960e+03 test 7832763
## 769 2521.817 2886.871 2.602523e+03 test 7832763
## 770 2521.817 2886.871 1.518756e+03 test 7832763
## 771 2521.817 2886.871 1.591320e+03 test 7832763
## 772 2521.817 2886.871 2.481409e+03 test 7832763
## 773 2521.817 2886.871 1.666146e+03 test 7832763
## 774 2521.817 2886.871 1.902054e+03 test 7832763
## 775 2521.817 2886.871 1.485586e+03 test 7832763
## 776 2521.817 2886.871 1.187265e+03 test 7832763
## 777 2521.817 2886.871 1.940917e+03 test 7832763
## 778 2521.817 2886.871 1.726795e+03 test 7832763
## 779 2521.817 2886.871 2.087676e+03 test 7832763
## 780 2521.817 2886.871 2.898909e+03 test 7832763
## 781 2521.817 2886.871 2.347233e+03 test 7832763
## 782 2521.817 2886.871 2.110702e+03 test 7832763
## 783 2521.817 2886.871 3.494963e+03 test 7832763
## 784 2521.817 2886.871 2.332503e+03 test 7832763
## 785 2521.817 2886.871 1.456617e+03 test 7832763
## 786 2521.817 2886.871 1.602255e+03 test 7832763
## 787 2521.817 2886.871 2.668252e+03 test 7832763
## 788 2521.817 2886.871 2.162271e+03 test 7832763
## 789 2521.817 2886.871 1.210923e+03 test 7832763
## 790 2521.817 2886.871 2.758846e+03 test 7832763
## 791 2521.817 2886.871 2.638720e+03 test 7832763
## 792 2521.817 2886.871 2.065227e+03 test 7832763
## 793 2521.817 2886.871 2.460979e+03 test 7832763
## 794 2521.817 2886.871 2.318313e+03 test 7832763
## 795 2521.817 2886.871 2.122514e+03 test 7832763
## 796 2521.817 2886.871 1.845248e+03 test 7832763
## 797 2521.817 2886.871 1.313379e+03 test 7832763
## 798 2521.817 2886.871 1.653948e+03 test 7832763
## 799 2521.817 2886.871 2.539191e+03 test 7832763
## 800 2521.817 2886.871 1.921953e+03 test 7832763
## 801 2521.817 2886.871 2.848724e+03 test 7832763
## 802 2521.817 2886.871 3.484926e+03 test 7832763
## 803 2521.817 2886.871 2.612588e+03 test 7832763
## 804 2521.817 2886.871 2.378519e+03 test 7832763
## 805 2521.817 2886.871 2.183588e+03 test 7832763
## 806 2521.817 2886.871 2.435486e+03 test 7832763
## 807 2521.817 2886.871 2.698821e+03 test 7832763
## 808 2521.817 2886.871 2.221687e+03 test 7832763
## 809 2521.817 2886.871 1.396872e+03 test 7832763
## 810 2521.817 2886.871 1.358215e+03 test 7832763
## 811 2521.817 2886.871 2.588162e+03 test 7832763
## 812 2521.817 2886.871 1.400545e+03 test 7832763
## 813 2521.817 2886.871 2.950000e+03 test 7832763
## 814 2521.817 2886.871 2.189574e+03 test 7832763
## 815 2521.817 2886.871 1.997176e+03 test 7832763
## 816 2521.817 2886.871 3.169748e+03 test 7832763
## 817 2521.817 2886.871 2.338994e+03 test 7832763
## 818 2521.817 2886.871 2.076166e+03 test 7832763
## 819 2521.817 2886.871 2.521605e+03 test 7832763
## 820 2521.817 2886.871 2.113132e+03 test 7832763
## 821 2521.817 2886.871 2.553899e+03 test 7832763
## 822 2521.817 2886.871 1.822428e+03 test 7832763
## 823 2521.817 2886.871 1.490970e+03 test 7832763
## 824 2521.817 2886.871 1.981304e+03 test 7832763
## 825 2521.817 2886.871 2.426241e+03 test 7832763
## 826 2521.817 2886.871 2.222591e+03 test 7832763
## 827 2521.817 2886.871 1.490778e+03 test 7832763
## 828 2521.817 2886.871 2.063769e+03 test 7832763
## 829 2521.817 2886.871 1.834575e+03 test 7832763
## 830 2521.817 2886.871 2.824316e+03 test 7832763
## 831 2521.817 2886.871 1.764208e+03 test 7832763
## 832 2521.817 2886.871 1.423544e+03 test 7832763
## 833 2521.817 2886.871 2.414642e+03 test 7832763
## 834 2521.817 2886.871 1.749091e+03 test 7832763
## 835 2521.817 2886.871 1.550981e+03 test 7832763
## 836 2521.817 2886.871 1.838114e+03 test 7832763
## 837 2521.817 2886.871 1.219857e+03 test 7832763
## 838 2521.817 2886.871 2.235931e+03 test 7832763
## 839 2521.817 2886.871 2.527650e+03 test 7832763
## 840 2521.817 2886.871 2.081668e+03 test 7832763
## 841 2521.817 2886.871 1.931553e+03 test 7832763
## 842 2521.817 2886.871 1.879229e+03 test 7832763
## 843 2521.817 2886.871 2.233701e+03 test 7832763
## 844 2521.817 2886.871 1.511865e+03 test 7832763
## 845 2521.817 2886.871 2.898058e+03 test 7832763
## 846 2521.817 2886.871 2.151422e+03 test 7832763
## 847 2521.817 2886.871 1.500920e+03 test 7832763
## 848 2521.817 2886.871 1.679074e+03 test 7832763
## 849 2521.817 2886.871 1.603499e+03 test 7832763
## 850 2521.817 2886.871 1.417369e+03 test 7832763
## 851 2521.817 2886.871 1.518823e+03 test 7832763
## 852 2521.817 2886.871 2.048800e+03 test 7832763
## 853 2521.817 2886.871 2.217795e+03 test 7832763
## 854 2521.817 2886.871 1.369141e+03 test 7832763
## 855 2521.817 2886.871 2.426644e+03 test 7832763
## 856 2521.817 2886.871 2.245590e+03 test 7832763
## 857 2521.817 2886.871 2.511881e+03 test 7832763
## 858 2521.817 2886.871 1.637471e+03 test 7832763
## 859 2521.817 2886.871 1.634007e+03 test 7832763
## 860 2521.817 2886.871 2.195836e+03 test 7832763
## 861 2521.817 2886.871 2.420785e+03 test 7832763
## 862 2521.817 2886.871 1.600516e+03 test 7832763
## 863 2521.817 2886.871 2.312372e+03 test 7832763
## 864 2521.817 2886.871 1.532876e+03 test 7832763
## 865 2521.817 2886.871 1.935832e+03 test 7832763
## 866 2521.817 2886.871 2.072273e+03 test 7832763
## 867 2521.817 2886.871 3.065990e+03 test 7832763
## 868 2521.817 2886.871 3.647449e+03 test 7832763
## 869 2521.817 2886.871 1.773640e+03 test 7832763
## 870 2521.817 2886.871 3.526802e+03 test 7832763
## 871 2521.817 2886.871 1.215663e+03 test 7832763
## 872 2521.817 2886.871 2.500406e+03 test 7832763
## 873 2521.817 2886.871 1.737776e+03 test 7832763
## 874 2521.817 2886.871 2.911239e+03 test 7832763
## 875 2521.817 2886.871 2.686470e+03 test 7832763
## 876 2521.817 2886.871 1.706611e+03 test 7832763
## 877 2521.817 2886.871 1.609207e+03 test 7832763
## 878 2521.817 2886.871 1.641847e+03 test 7832763
## 879 2521.817 2886.871 2.496478e+03 test 7832763
## 880 2521.817 2886.871 1.861832e+03 test 7832763
## 881 2521.817 2886.871 1.425785e+03 test 7832763
## 882 2521.817 2886.871 2.030551e+03 test 7832763
## 883 2521.817 2886.871 4.153356e+03 test 7832763
## 884 2521.817 2886.871 2.834661e+03 test 7832763
## 885 2521.817 2886.871 2.724786e+03 test 7832763
## 886 2521.817 2886.871 2.147943e+03 test 7832763
## 887 2521.817 2886.871 3.055743e+03 test 7832763
## 888 2521.817 2886.871 2.411651e+03 test 7832763
## 889 2521.817 2886.871 1.624269e+03 test 7832763
## 890 2521.817 2886.871 2.321474e+03 test 7832763
## 891 2521.817 2886.871 2.298764e+03 test 7832763
## 892 2521.817 2886.871 1.618659e+03 test 7832763
## 893 2521.817 2886.871 3.047607e+03 test 7832763
## 894 2521.817 2886.871 3.059922e+03 test 7832763
## 895 2521.817 2886.871 1.770799e+03 test 7832763
## 896 2521.817 2886.871 2.128928e+03 test 7832763
## 897 2521.817 2886.871 2.297221e+03 test 7832763
## 898 2521.817 2886.871 1.464736e+03 test 7832763
## 899 2521.817 2886.871 2.615527e+03 test 7832763
## 900 2521.817 2886.871 1.427321e+03 test 7832763
## 901 2521.817 2886.871 1.784299e+03 test 7832763
## 902 2521.817 2886.871 1.574872e+03 test 7832763
## 903 2521.817 2886.871 1.382526e+03 test 7832763
## 904 2521.817 2886.871 1.765110e+03 test 7832763
## 905 2521.817 2886.871 2.035833e+03 test 7832763
## 906 2521.817 2886.871 2.249019e+03 test 7832763
## 907 2521.817 2886.871 2.610868e+03 test 7832763
## 908 2521.817 2886.871 1.866227e+03 test 7832763
## 909 2521.817 2886.871 1.331511e+03 test 7832763
## 910 2521.817 2886.871 2.528366e+03 test 7832763
## 911 2521.817 2886.871 1.589967e+03 test 7832763
## 912 2521.817 2886.871 2.037824e+03 test 7832763
## 913 2521.817 2886.871 1.766517e+03 test 7832763
## 914 2521.817 2886.871 1.268359e+03 test 7832763
## 915 2521.817 2886.871 2.480324e+03 test 7832763
## 916 2521.817 2886.871 1.907199e+03 test 7832763
## 917 2521.817 2886.871 1.197279e+03 test 7832763
## 918 2521.817 2886.871 2.054211e+03 test 7832763
## 919 2521.817 2886.871 2.570418e+03 test 7832763
## 920 2521.817 2886.871 3.567576e+03 test 7832763
## 921 2521.817 2886.871 2.024293e+03 test 7832763
## 922 2521.817 2886.871 1.951156e+03 test 7832763
## 923 2521.817 2886.871 2.376311e+03 test 7832763
## 924 2521.817 2886.871 1.752544e+03 test 7832763
## 925 2521.817 2886.871 1.971793e+03 test 7832763
## 926 2521.817 2886.871 3.251700e+03 test 7832763
## 927 2521.817 2886.871 2.199967e+03 test 7832763
## 928 2521.817 2886.871 1.686009e+03 test 7832763
## 929 2521.817 2886.871 2.118301e+03 test 7832763
## 930 2521.817 2886.871 2.248393e+03 test 7832763
## 931 2521.817 2886.871 1.891681e+03 test 7832763
## 932 2521.817 2886.871 1.201453e+03 test 7832763
## 933 2521.817 2886.871 2.879646e+03 test 7832763
## 934 2521.817 2886.871 1.437361e+03 test 7832763
## 935 2521.817 2886.871 1.398749e+03 test 7832763
## 936 2521.817 2886.871 1.906821e+03 test 7832763
## 937 2521.817 2886.871 1.553814e+03 test 7832763
## 938 2521.817 2886.871 2.344380e+03 test 7832763
## 939 2521.817 2886.871 2.071434e+03 test 7832763
## 940 2521.817 2886.871 3.219622e+03 test 7832763
## 941 2521.817 2886.871 1.940583e+03 test 7832763
## 942 2521.817 2886.871 2.132208e+03 test 7832763
## 943 2521.817 2886.871 2.696083e+03 test 7832763
## 944 2521.817 2886.871 4.213541e+03 test 7832763
## 945 2521.817 2886.871 1.493119e+03 test 7832763
## 946 2521.817 2886.871 1.344284e+03 test 7832763
## 947 2521.817 2886.871 2.211926e+03 test 7832763
## 948 2521.817 2886.871 1.735572e+03 test 7832763
## 949 2521.817 2886.871 2.061230e+03 test 7832763
## 950 2521.817 2886.871 1.214652e+03 test 7832763
## 951 2521.817 2886.871 1.646069e+03 test 7832763
## 952 2521.817 2886.871 1.488019e+03 test 7832763
## 953 2521.817 2886.871 1.279941e+03 test 7832763
## 954 2521.817 2886.871 1.364142e+03 test 7832763
## 955 2521.817 2886.871 1.676848e+03 test 7832763
## 956 2521.817 2886.871 1.715713e+03 test 7832763
## 957 2521.817 2886.871 2.028056e+03 test 7832763
## 958 2521.817 2886.871 1.391636e+03 test 7832763
## 959 2521.817 2886.871 2.654650e+03 test 7832763
## 960 2521.817 2886.871 1.602217e+03 test 7832763
## 961 2521.817 2886.871 1.999731e+03 test 7832763
## 962 2521.817 2886.871 1.096507e+03 test 7832763
## 963 2521.817 2886.871 2.361889e+03 test 7832763
## 964 2521.817 2886.871 1.184355e+03 test 7832763
## 965 2521.817 2886.871 2.052604e+03 test 7832763
## 966 2521.817 2886.871 1.810680e+03 test 7832763
## 967 2521.817 2886.871 2.066022e+03 test 7832763
## 968 2521.817 2886.871 2.238322e+03 test 7832763
## 969 2521.817 2886.871 2.445433e+03 test 7832763
## 970 2521.817 2886.871 1.661628e+03 test 7832763
## 971 2521.817 2886.871 2.804278e+03 test 7832763
## 972 2521.817 2886.871 2.043314e+03 test 7832763
## 973 2521.817 2886.871 1.543500e+03 test 7832763
## 974 2521.817 2886.871 2.277234e+03 test 7832763
## 975 2521.817 2886.871 3.204325e+03 test 7832763
## 976 2521.817 2886.871 1.875804e+03 test 7832763
## 977 2521.817 2886.871 1.457399e+03 test 7832763
## 978 2521.817 2886.871 2.026410e+03 test 7832763
## 979 2521.817 2886.871 1.967136e+03 test 7832763
## 980 2521.817 2886.871 2.273555e+03 test 7832763
## 981 2521.817 2886.871 2.748641e+03 test 7832763
## 982 2521.817 2886.871 1.478312e+03 test 7832763
## 983 2521.817 2886.871 1.822464e+03 test 7832763
## 984 2521.817 2886.871 2.225466e+03 test 7832763
## 985 2521.817 2886.871 2.511380e+03 test 7832763
## 986 2521.817 2886.871 2.432657e+03 test 7832763
## 987 2521.817 2886.871 1.787095e+03 test 7832763
## 988 2521.817 2886.871 1.639686e+03 test 7832763
## 989 2521.817 2886.871 2.427203e+03 test 7832763
## 990 2521.817 2886.871 2.596988e+03 test 7832763
## 991 2521.817 2886.871 2.094690e+03 test 7832763
## 992 2521.817 2886.871 1.896568e+03 test 7832763
## 993 2521.817 2886.871 1.792258e+03 test 7832763
## 994 2521.817 2886.871 1.567945e+03 test 7832763
## 995 2521.817 2886.871 1.241830e+03 test 7832763
## 996 2521.817 2886.871 1.718976e+03 test 7832763
## 997 2521.817 2886.871 1.667747e+03 test 7832763
## 998 2521.817 2886.871 1.220145e+03 test 7832763
## 999 2521.817 2886.871 1.683704e+03 test 7832763
## 1000 2521.817 2886.871 1.286028e+03 test 7832763
## 1001 2521.817 2886.871 1.985274e+03 test 7832763
## 1002 2521.817 2886.871 2.724586e+03 test 7832763
## 1003 2521.817 2886.871 1.555572e+03 test 7832763
## 1004 2521.817 2886.871 1.778250e+03 test 7832763
## 1005 2521.817 2886.871 1.774573e+03 test 7832763
## 1006 2521.817 2886.871 9.870132e+02 test 7832763
## 1007 2521.817 2886.871 1.866498e+03 test 7832763
## 1008 2521.817 2886.871 1.467126e+03 test 7832763
## 1009 2521.817 2886.871 1.491949e+03 test 7832763
## 1010 2521.817 2886.871 1.405744e+03 test 7832763
## 1011 2521.817 2886.871 1.625917e+03 test 7832763
## 1012 2521.817 2886.871 2.528880e+03 test 7832763
## 1013 2521.817 2886.871 1.608925e+03 test 7832763
## 1014 2521.817 2886.871 2.239532e+03 test 7832763
## 1015 2521.817 2886.871 1.328649e+03 test 7832763
## 1016 2521.817 2886.871 2.107635e+03 test 7832763
## 1017 2521.817 2886.871 3.227215e+03 test 7832763
## 1018 2521.817 2886.871 1.620588e+03 test 7832763
## 1019 2521.817 2886.871 1.719654e+03 test 7832763
## 1020 2521.817 2886.871 1.735456e+03 test 7832763
## 1021 2521.817 2886.871 1.593022e+03 test 7832763
## 1022 2521.817 2886.871 1.542181e+03 test 7832763
## 1023 2521.817 2886.871 1.479749e+03 test 7832763
## 1024 2521.817 2886.871 2.729427e+03 test 7832763
## 1025 2521.817 2886.871 2.459822e+03 test 7832763
## 1026 2521.817 2886.871 1.360798e+03 test 7832763
## 1027 2521.817 2886.871 1.426165e+03 test 7832763
## 1028 2521.817 2886.871 2.489614e+03 test 7832763
## 1029 2521.817 2886.871 1.803787e+03 test 7832763
## 1030 2521.817 2886.871 2.074817e+03 test 7832763
## 1031 2521.817 2886.871 1.755129e+03 test 7832763
## 1032 2521.817 2886.871 1.675947e+03 test 7832763
## 1033 2521.817 2886.871 1.382481e+03 test 7832763
## 1034 2521.817 2886.871 1.741422e+03 test 7832763
## 1035 2521.817 2886.871 3.042034e+03 test 7832763
## 1036 2521.817 2886.871 1.794880e+03 test 7832763
## 1037 2521.817 2886.871 3.151516e+03 test 7832763
## 1038 2521.817 2886.871 1.688338e+03 test 7832763
## 1039 2521.817 2886.871 3.424829e+03 test 7832763
## 1040 2521.817 2886.871 1.472669e+03 test 7832763
## 1041 2521.817 2886.871 2.129115e+03 test 7832763
## 1042 2521.817 2886.871 2.095596e+03 test 7832763
## 1043 2521.817 2886.871 1.218897e+03 test 7832763
## 1044 2521.817 2886.871 2.676028e+03 test 7832763
## 1045 2521.817 2886.871 1.518843e+03 test 7832763
## 1046 2521.817 2886.871 1.803025e+03 test 7832763
## 1047 2521.817 2886.871 1.527098e+03 test 7832763
## 1048 2521.817 2886.871 1.768845e+03 test 7832763
## 1049 2521.817 2886.871 3.839615e+03 test 7832763
## 1050 2521.817 2886.871 1.468511e+03 test 7832763
## 1051 2521.817 2886.871 1.357057e+03 test 7832763
## 1052 2521.817 2886.871 1.259491e+03 test 7832763
## 1053 2521.817 2886.871 1.430537e+03 test 7832763
## 1054 2521.817 2886.871 1.454664e+03 test 7832763
## 1055 2521.817 2886.871 1.191928e+03 test 7832763
## 1056 2521.817 2886.871 1.477936e+03 test 7832763
## 1057 2521.817 2886.871 3.149174e+03 test 7832763
## 1058 2521.817 2886.871 2.110012e+03 test 7832763
## 1059 2521.817 2886.871 1.377827e+03 test 7832763
## 1060 2521.817 2886.871 1.871426e+03 test 7832763
## 1061 2521.817 2886.871 1.709257e+03 test 7832763
## 1062 2521.817 2886.871 1.773981e+03 test 7832763
## 1063 2521.817 2886.871 1.651726e+03 test 7832763
## 1064 2521.817 2886.871 2.306938e+03 test 7832763
## 1065 2521.817 2886.871 2.399041e+03 test 7832763
## 1066 2521.817 2886.871 1.246882e+03 test 7832763
## 1067 2521.817 2886.871 2.135694e+03 test 7832763
## 1068 2521.817 2886.871 1.350183e+03 test 7832763
## 1069 2521.817 2886.871 2.812506e+03 test 7832763
## 1070 2521.817 2886.871 3.391410e+03 test 7832763
## 1071 2521.817 2886.871 1.546138e+03 test 7832763
## 1072 2521.817 2886.871 6.451985e+03 test 7832763
## 1073 2521.817 2886.871 1.721357e+03 test 7832763
## 1074 2521.817 2886.871 2.269495e+03 test 7832763
## 1075 2521.817 2886.871 1.717417e+03 test 7832763
## 1076 2521.817 2886.871 1.387908e+03 test 7832763
## 1077 2521.817 2886.871 2.088908e+03 test 7832763
## 1078 2521.817 2886.871 2.900950e+03 test 7832763
## 1079 2521.817 2886.871 2.762999e+03 test 7832763
## 1080 2521.817 2886.871 1.018427e+03 test 7832763
## 1081 2521.817 2886.871 2.859012e+03 test 7832763
## 1082 2521.817 2886.871 1.375581e+03 test 7832763
## 1083 2521.817 2886.871 1.649898e+03 test 7832763
## 1084 2521.817 2886.871 1.470746e+03 test 7832763
## 1085 2521.817 2886.871 1.647532e+03 test 7832763
## 1086 2521.817 2886.871 1.074436e+03 test 7832763
## 1087 2521.817 2886.871 1.810180e+03 test 7832763
## 1088 2521.817 2886.871 1.545249e+03 test 7832763
## 1089 2521.817 2886.871 1.486325e+03 test 7832763
## 1090 2521.817 2886.871 1.467588e+03 test 7832763
## 1091 2521.817 2886.871 3.649897e+03 test 7832763
## 1092 2521.817 2886.871 1.432931e+03 test 7832763
## 1093 2521.817 2886.871 1.676010e+03 test 7832763
## 1094 2521.817 2886.871 1.427686e+03 test 7832763
## 1095 2521.817 2886.871 1.541587e+03 test 7832763
## 1096 2521.817 2886.871 1.562362e+03 test 7832763
## 1097 2521.817 2886.871 1.617647e+03 test 7832763
## 1098 2521.817 2886.871 9.136528e+02 test 7832763
## 1099 2521.817 2886.871 1.267375e+03 test 7832763
## 1100 2521.817 2886.871 1.134206e+03 test 7832763
## 1101 2521.817 2886.871 2.467171e+03 test 7832763
## 1102 2521.817 2886.871 3.119035e+03 test 7832763
## 1103 2521.817 2886.871 2.779491e+03 test 7832763
## 1104 2521.817 2886.871 3.238616e+03 test 7832763
## 1105 2521.817 2886.871 1.752775e+04 test 7832763
## 1106 2521.817 2886.871 4.134886e+03 test 7832763
## 1107 2521.817 2886.871 7.767147e+03 test 7832763
## 1108 2521.817 2886.871 2.160875e+03 test 7832763
## 1109 2521.817 2886.871 1.363408e+03 test 7832763
## 1110 2521.817 2886.871 1.596909e+03 test 7832763
## 1111 2521.817 2886.871 1.266476e+03 test 7832763
## 1112 2521.817 2886.871 1.320787e+03 test 7832763
## 1113 2521.817 2886.871 1.395499e+03 test 7832763
## 1114 2521.817 2886.871 3.251393e+03 test 7832763
## 1115 2521.817 2886.871 1.797078e+03 test 7832763
## 1116 2521.817 2886.871 1.063254e+03 test 7832763
## 1117 2521.817 2886.871 2.197003e+03 test 7832763
## 1118 2521.817 2886.871 1.412374e+03 test 7832763
## 1119 2521.817 2886.871 1.616312e+03 test 7832763
## 1120 2521.817 2886.871 1.311581e+03 test 7832763
## 1121 2521.817 2886.871 1.292313e+03 test 7832763
## 1122 2521.817 2886.871 1.233278e+03 test 7832763
## 1123 2521.817 2886.871 1.577489e+03 test 7832763
## 1124 2521.817 2886.871 1.587682e+03 test 7832763
## 1125 2521.817 2886.871 2.130375e+03 test 7832763
## 1126 2521.817 2886.871 8.563816e+02 test 7832763
## 1127 2521.817 2886.871 1.087633e+03 test 7832763
## 1128 2521.817 2886.871 1.006696e+03 test 7832763
## 1129 2521.817 2886.871 2.113144e+03 test 7832763
## 1130 2521.817 2886.871 1.847756e+03 test 7832763
## 1131 2521.817 2886.871 1.575482e+03 test 7832763
## 1132 2521.817 2886.871 1.282633e+03 test 7832763
## 1133 2521.817 2886.871 1.499709e+03 test 7832763
## 1134 2521.817 2886.871 2.018565e+03 test 7832763
## 1135 2521.817 2886.871 2.712139e+03 test 7832763
## 1136 2521.817 2886.871 2.714531e+03 test 7832763
## 1137 2521.817 2886.871 1.478329e+03 test 7832763
## 1138 2521.817 2886.871 1.759075e+03 test 7832763
## 1139 2521.817 2886.871 1.856002e+03 test 7832763
## 1140 2521.817 2886.871 1.690325e+03 test 7832763
## 1141 2521.817 2886.871 1.150757e+03 test 7832763
## 1142 2521.817 2886.871 1.627782e+03 test 7832763
## 1143 2521.817 2886.871 1.271006e+03 test 7832763
## 1144 2521.817 2886.871 2.411922e+03 test 7832763
## 1145 2521.817 2886.871 1.392683e+03 test 7832763
## 1146 2521.817 2886.871 2.002949e+03 test 7832763
## 1147 2521.817 2886.871 1.423609e+03 test 7832763
## 1148 2521.817 2886.871 1.788925e+03 test 7832763
## 1149 2521.817 2886.871 1.494743e+03 test 7832763
## 1150 2521.817 2886.871 1.540033e+03 test 7832763
## 1151 2521.817 2886.871 1.610290e+03 test 7832763
## 1152 2521.817 2886.871 2.622278e+03 test 7832763
## 1153 2521.817 2886.871 1.334771e+03 test 7832763
## 1154 2521.817 2886.871 2.367172e+03 test 7832763
## 1155 2521.817 2886.871 2.536130e+03 test 7832763
## 1156 2521.817 2886.871 1.292473e+03 test 7832763
## 1157 2521.817 2886.871 1.461279e+03 test 7832763
## 1158 2521.817 2886.871 1.872098e+03 test 7832763
## 1159 2521.817 2886.871 1.558714e+03 test 7832763
## 1160 2521.817 2886.871 1.679197e+03 test 7832763
## 1161 2521.817 2886.871 1.190456e+03 test 7832763
## 1162 2521.817 2886.871 1.123350e+03 test 7832763
## 1163 2521.817 2886.871 9.221037e+03 test 7832763
## 1164 2521.817 2886.871 1.590445e+03 test 7832763
## 1165 2521.817 2886.871 1.660153e+03 test 7832763
## 1166 2521.817 2886.871 1.511502e+03 test 7832763
## 1167 2521.817 2886.871 1.915675e+03 test 7832763
## 1168 2521.817 2886.871 1.672269e+03 test 7832763
## 1169 2521.817 2886.871 1.568997e+03 test 7832763
## 1170 2521.817 2886.871 1.591375e+03 test 7832763
## 1171 2521.817 2886.871 1.491029e+03 test 7832763
## 1172 2521.817 2886.871 1.376303e+03 test 7832763
## 1173 2521.817 2886.871 1.403528e+03 test 7832763
## 1174 2521.817 2886.871 1.263549e+03 test 7832763
## 1175 2521.817 2886.871 1.279446e+03 test 7832763
## 1176 2521.817 2886.871 1.368951e+03 test 7832763
## 1177 2521.817 2886.871 1.473175e+03 test 7832763
## 1178 2521.817 2886.871 2.035749e+03 test 7832763
## 1179 2521.817 2886.871 2.716442e+03 test 7832763
## 1180 2521.817 2886.871 2.135990e+03 test 7832763
## 1181 2521.817 2886.871 1.843148e+03 test 7832763
## 1182 2521.817 2886.871 1.688119e+03 test 7832763
## 1183 2521.817 2886.871 1.703332e+03 test 7832763
## 1184 2521.817 2886.871 1.271173e+03 test 7832763
## 1185 2521.817 2886.871 2.086250e+03 test 7832763
## 1186 2521.817 2886.871 1.466127e+03 test 7832763
## 1187 2521.817 2886.871 1.501039e+03 test 7832763
## 1188 2521.817 2886.871 1.952400e+03 test 7832763
## 1189 2521.817 2886.871 1.794428e+03 test 7832763
## 1190 2521.817 2886.871 1.389084e+03 test 7832763
## 1191 2521.817 2886.871 2.100543e+03 test 7832763
## 1192 2521.817 2886.871 1.760610e+03 test 7832763
## 1193 2521.817 2886.871 2.181598e+03 test 7832763
## 1194 2521.817 2886.871 1.545448e+03 test 7832763
## 1195 2521.817 2886.871 1.805384e+03 test 7832763
## 1196 2521.817 2886.871 1.398880e+03 test 7832763
## 1197 2521.817 2886.871 2.012179e+03 test 7832763
## 1198 2521.817 2886.871 1.574744e+03 test 7832763
## 1199 2521.817 2886.871 1.999572e+03 test 7832763
## 1200 2521.817 2886.871 1.482328e+03 test 7832763
## 1201 2521.817 2886.871 1.216242e+03 test 7832763
## 1202 2521.817 2886.871 2.198682e+03 test 7832763
## 1203 2521.817 2886.871 1.431848e+03 test 7832763
## 1204 2521.817 2886.871 2.151954e+03 test 7832763
## 1205 2521.817 2886.871 1.611751e+03 test 7832763
## 1206 2521.817 2886.871 1.417122e+03 test 7832763
## 1207 2521.817 2886.871 1.864205e+03 test 7832763
## 1208 2521.817 2886.871 1.589059e+03 test 7832763
## 1209 2521.817 2886.871 4.271138e+03 test 7832763
## 1210 2521.817 2886.871 1.093967e+04 test 7832763
## 1211 2521.817 2886.871 1.491828e+03 test 7832763
## 1212 2521.817 2886.871 1.359033e+03 test 7832763
## 1213 2521.817 2886.871 1.502290e+03 test 7832763
## 1214 2521.817 2886.871 1.836204e+03 test 7832763
## 1215 2521.817 2886.871 1.370135e+03 test 7832763
## 1216 2521.817 2886.871 4.708254e+03 test 7832763
## 1217 2521.817 2886.871 1.230988e+03 test 7832763
## 1218 2521.817 2886.871 2.978414e+03 test 7832763
## 1219 2521.817 2886.871 2.656155e+03 test 7832763
## 1220 2521.817 2886.871 1.168776e+03 test 7832763
## 1221 2521.817 2886.871 2.107773e+03 test 7832763
## 1222 2521.817 2886.871 1.499493e+03 test 7832763
## 1223 2521.817 2886.871 2.220577e+03 test 7832763
## 1224 2521.817 2886.871 1.747601e+03 test 7832763
## 1225 2521.817 2886.871 1.380411e+03 test 7832763
## 1226 2521.817 2886.871 2.191266e+03 test 7832763
## 1227 2521.817 2886.871 1.598884e+03 test 7832763
## 1228 2521.817 2886.871 1.379513e+03 test 7832763
## 1229 2521.817 2886.871 1.717497e+03 test 7832763
## 1230 2521.817 2886.871 1.697362e+03 test 7832763
## 1231 2521.817 2886.871 1.456459e+03 test 7832763
## 1232 2521.817 2886.871 1.402874e+03 test 7832763
## 1233 2521.817 2886.871 1.962548e+03 test 7832763
## 1234 2521.817 2886.871 1.509576e+03 test 7832763
## 1235 2521.817 2886.871 1.480320e+03 test 7832763
## 1236 2521.817 2886.871 1.429243e+03 test 7832763
## 1237 2521.817 2886.871 1.375619e+03 test 7832763
## 1238 2521.817 2886.871 1.390521e+03 test 7832763
## 1239 2521.817 2886.871 1.975322e+03 test 7832763
## 1240 2521.817 2886.871 1.274008e+03 test 7832763
## 1241 2521.817 2886.871 2.365173e+03 test 7832763
## 1242 2521.817 2886.871 1.371999e+03 test 7832763
## 1243 2521.817 2886.871 5.217248e+03 test 7832763
## 1244 2521.817 2886.871 2.028725e+03 test 7832763
## 1245 2521.817 2886.871 1.393332e+03 test 7832763
## 1246 2521.817 2886.871 1.288284e+03 test 7832763
## 1247 2521.817 2886.871 1.406204e+03 test 7832763
## 1248 2521.817 2886.871 2.411284e+03 test 7832763
## 1249 2521.817 2886.871 1.870540e+03 test 7832763
## 1250 2521.817 2886.871 2.254312e+03 test 7832763
## 1251 2521.817 2886.871 1.873127e+03 test 7832763
## 1252 2521.817 2886.871 1.304034e+03 test 7832763
## 1253 2521.817 2886.871 1.975375e+03 test 7832763
## 1254 2521.817 2886.871 1.561780e+03 test 7832763
## 1255 2521.817 2886.871 1.615902e+03 test 7832763
## 1256 2521.817 2886.871 1.713143e+03 test 7832763
## 1257 2521.817 2886.871 1.205257e+03 test 7832763
## 1258 2521.817 2886.871 1.812928e+03 test 7832763
## 1259 2521.817 2886.871 1.771857e+03 test 7832763
## 1260 2521.817 2886.871 2.405470e+03 test 7832763
## 1261 2521.817 2886.871 2.170189e+03 test 7832763
## 1262 2521.817 2886.871 1.506123e+03 test 7832763
## 1263 2521.817 2886.871 1.931708e+03 test 7832763
## 1264 2521.817 2886.871 1.147269e+03 test 7832763
## 1265 2521.817 2886.871 3.382914e+03 test 7832763
## 1266 2521.817 2886.871 8.138062e+02 test 7832763
## 1267 2521.817 2886.871 1.456881e+03 test 7832763
## 1268 2521.817 2886.871 2.028591e+03 test 7832763
## 1269 2521.817 2886.871 1.392132e+03 test 7832763
## 1270 2521.817 2886.871 1.732034e+03 test 7832763
## 1271 2521.817 2886.871 1.532607e+03 test 7832763
## 1272 2521.817 2886.871 1.655041e+03 test 7832763
## 1273 2521.817 2886.871 1.644657e+03 test 7832763
## 1274 2521.817 2886.871 1.672022e+03 test 7832763
## 1275 2521.817 2886.871 1.744699e+03 test 7832763
## 1276 2521.817 2886.871 1.790798e+03 test 7832763
## 1277 2521.817 2886.871 1.756845e+03 test 7832763
## 1278 2521.817 2886.871 1.411653e+03 test 7832763
## 1279 2521.817 2886.871 1.208488e+03 test 7832763
## 1280 2521.817 2886.871 1.837443e+03 test 7832763
## 1281 2521.817 2886.871 1.226255e+03 test 7832763
## 1282 2521.817 2886.871 2.270837e+03 test 7832763
## 1283 2521.817 2886.871 2.114047e+03 test 7832763
## 1284 2521.817 2886.871 1.301037e+03 test 7832763
## 1285 2521.817 2886.871 1.548428e+03 test 7832763
## 1286 2521.817 2886.871 1.487811e+03 test 7832763
## 1287 2521.817 2886.871 1.790582e+03 test 7832763
## 1288 2521.817 2886.871 1.592320e+03 test 7832763
## 1289 2521.817 2886.871 1.614327e+03 test 7832763
## 1290 2521.817 2886.871 1.421525e+03 test 7832763
## 1291 2521.817 2886.871 1.274694e+03 test 7832763
## 1292 2521.817 2886.871 1.915624e+03 test 7832763
## 1293 2521.817 2886.871 1.267867e+03 test 7832763
## 1294 2521.817 2886.871 1.587713e+03 test 7832763
## 1295 2521.817 2886.871 1.335013e+03 test 7832763
## 1296 2521.817 2886.871 1.743244e+03 test 7832763
## 1297 2521.817 2886.871 1.844253e+03 test 7832763
## 1298 2521.817 2886.871 1.470815e+03 test 7832763
## 1299 2521.817 2886.871 2.055644e+03 test 7832763
## 1300 2521.817 2886.871 2.066686e+03 test 7832763
## 1301 2521.817 2886.871 2.117909e+03 test 7832763
## 1302 2521.817 2886.871 1.610511e+03 test 7832763
## 1303 2521.817 2886.871 1.419839e+03 test 7832763
## 1304 2521.817 2886.871 2.554008e+03 test 7832763
## 1305 2521.817 2886.871 2.301180e+03 test 7832763
## 1306 2521.817 2886.871 2.285891e+03 test 7832763
## 1307 2521.817 2886.871 1.716166e+03 test 7832763
## 1308 2521.817 2886.871 1.871258e+03 test 7832763
## 1309 2521.817 2886.871 1.684098e+03 test 7832763
## 1310 2521.817 2886.871 1.871693e+03 test 7832763
## 1311 2521.817 2886.871 1.442204e+03 test 7832763
## 1312 2521.817 2886.871 1.659965e+03 test 7832763
## 1313 2521.817 2886.871 1.579492e+03 test 7832763
## 1314 2521.817 2886.871 1.405564e+03 test 7832763
## 1315 2521.817 2886.871 1.920904e+03 test 7832763
## 1316 2521.817 2886.871 1.430596e+03 test 7832763
## 1317 2521.817 2886.871 1.502747e+03 test 7832763
## 1318 2521.817 2886.871 7.525497e+03 test 7832763
## 1319 2521.817 2886.871 1.826828e+03 test 7832763
## 1320 2521.817 2886.871 2.396251e+03 test 7832763
## 1321 2521.817 2886.871 1.963228e+03 test 7832763
## 1322 2521.817 2886.871 1.192518e+03 test 7832763
## 1323 2521.817 2886.871 3.503800e+03 test 7832763
## 1324 2521.817 2886.871 2.032182e+03 test 7832763
## 1325 2521.817 2886.871 1.604663e+03 test 7832763
## 1326 2521.817 2886.871 1.739156e+03 test 7832763
## 1327 2521.817 2886.871 1.606678e+03 test 7832763
## 1328 2521.817 2886.871 1.521214e+03 test 7832763
## 1329 2521.817 2886.871 1.233499e+03 test 7832763
## 1330 2521.817 2886.871 1.680638e+03 test 7832763
## 1331 2521.817 2886.871 1.471692e+03 test 7832763
## 1332 2521.817 2886.871 1.641993e+03 test 7832763
## 1333 2521.817 2886.871 2.092008e+03 test 7832763
## 1334 2521.817 2886.871 4.531516e+03 test 7832763
## 1335 2521.817 2886.871 1.148874e+03 test 7832763
## 1336 2521.817 2886.871 1.321745e+03 test 7832763
## 1337 2521.817 2886.871 2.289484e+03 test 7832763
## 1338 2521.817 2886.871 1.850665e+03 test 7832763
## 1339 2521.817 2886.871 1.709689e+03 test 7832763
## 1340 2521.817 2886.871 1.305421e+03 test 7832763
## 1341 2521.817 2886.871 1.401110e+03 test 7832763
## 1342 2521.817 2886.871 1.476783e+03 test 7832763
## 1343 2521.817 2886.871 1.264473e+03 test 7832763
## 1344 2521.817 2886.871 1.721740e+03 test 7832763
## 1345 2521.817 2886.871 1.541307e+03 test 7832763
## 1346 2521.817 2886.871 1.407336e+03 test 7832763
## 1347 2521.817 2886.871 1.516429e+03 test 7832763
## 1348 2521.817 2886.871 1.183199e+03 test 7832763
## 1349 2521.817 2886.871 1.736330e+03 test 7832763
## 1350 2521.817 2886.871 1.725832e+03 test 7832763
## 1351 2521.817 2886.871 1.798665e+03 test 7832763
## 1352 2521.817 2886.871 1.701106e+03 test 7832763
## 1353 2521.817 2886.871 1.830352e+03 test 7832763
## 1354 2521.817 2886.871 1.659378e+03 test 7832763
## 1355 2521.817 2886.871 1.866159e+03 test 7832763
## 1356 2521.817 2886.871 1.685087e+03 test 7832763
## 1357 2521.817 2886.871 2.590024e+03 test 7832763
## 1358 2521.817 2886.871 1.368288e+03 test 7832763
## 1359 2521.817 2886.871 1.754725e+03 test 7832763
## 1360 2521.817 2886.871 1.967771e+03 test 7832763
## 1361 2521.817 2886.871 2.015108e+03 test 7832763
## 1362 2521.817 2886.871 2.016181e+03 test 7832763
## 1363 2521.817 2886.871 1.351507e+03 test 7832763
## 1364 2521.817 2886.871 2.614964e+03 test 7832763
## 1365 2521.817 2886.871 1.614000e+03 test 7832763
## 1366 2521.817 2886.871 1.507436e+03 test 7832763
## 1367 2521.817 2886.871 1.835736e+03 test 7832763
## 1368 2521.817 2886.871 3.430234e+03 test 7832763
## 1369 2521.817 2886.871 2.081948e+03 test 7832763
## 1370 2521.817 2886.871 2.796545e+03 test 7832763
## 1371 2521.817 2886.871 1.421004e+03 test 7832763
## 1372 2521.817 2886.871 1.288134e+03 test 7832763
## 1373 2521.817 2886.871 1.625014e+03 test 7832763
## 1374 2521.817 2886.871 1.884118e+03 test 7832763
## 1375 2521.817 2886.871 1.667252e+03 test 7832763
## 1376 2521.817 2886.871 1.671067e+03 test 7832763
## 1377 2521.817 2886.871 1.191300e+03 test 7832763
## 1378 2521.817 2886.871 1.457356e+03 test 7832763
## 1379 2521.817 2886.871 1.359687e+03 test 7832763
## 1380 2521.817 2886.871 2.735618e+03 test 7832763
## 1381 2521.817 2886.871 1.859801e+03 test 7832763
## 1382 2521.817 2886.871 1.886220e+03 test 7832763
## 1383 2521.817 2886.871 1.820163e+03 test 7832763
## 1384 2521.817 2886.871 1.550808e+03 test 7832763
## 1385 2521.817 2886.871 1.673685e+03 test 7832763
## 1386 2521.817 2886.871 2.321793e+03 test 7832763
## 1387 2521.817 2886.871 1.858111e+03 test 7832763
## 1388 2521.817 2886.871 2.040193e+03 test 7832763
## 1389 2521.817 2886.871 1.344537e+03 test 7832763
## 1390 2521.817 2886.871 1.753960e+03 test 7832763
## 1391 2521.817 2886.871 1.644264e+03 test 7832763
## 1392 2521.817 2886.871 1.463307e+03 test 7832763
## 1393 2521.817 2886.871 2.182261e+03 test 7832763
## 1394 2521.817 2886.871 1.739070e+03 test 7832763
## 1395 2521.817 2886.871 1.833803e+03 test 7832763
## 1396 2521.817 2886.871 1.746872e+03 test 7832763
## 1397 2521.817 2886.871 1.706734e+03 test 7832763
## 1398 2521.817 2886.871 1.425900e+03 test 7832763
## 1399 2521.817 2886.871 2.397396e+03 test 7832763
## 1400 2521.817 2886.871 2.013412e+03 test 7832763
## 1401 2521.817 2886.871 1.708840e+03 test 7832763
## 1402 2521.817 2886.871 2.125066e+03 test 7832763
## 1403 2521.817 2886.871 1.806878e+03 test 7832763
## 1404 2521.817 2886.871 1.175835e+03 test 7832763
## 1405 2521.817 2886.871 2.005756e+03 test 7832763
## 1406 2521.817 2886.871 1.278551e+03 test 7832763
## 1407 2521.817 2886.871 1.706612e+03 test 7832763
## 1408 2521.817 2886.871 1.546791e+03 test 7832763
## 1409 2521.817 2886.871 1.728221e+03 test 7832763
## 1410 2521.817 2886.871 1.592660e+03 test 7832763
## 1411 2521.817 2886.871 1.712014e+03 test 7832763
## 1412 2521.817 2886.871 1.418379e+03 test 7832763
## 1413 2521.817 2886.871 2.195537e+03 test 7832763
## 1414 2521.817 2886.871 3.327294e+03 test 7832763
## 1415 2521.817 2886.871 1.550284e+03 test 7832763
## 1416 2521.817 2886.871 1.782374e+03 test 7832763
## 1417 2521.817 2886.871 1.342635e+03 test 7832763
## 1418 2521.817 2886.871 2.106457e+03 test 7832763
## 1419 2521.817 2886.871 2.712417e+03 test 7832763
## 1420 2521.817 2886.871 2.201878e+03 test 7832763
## 1421 2521.817 2886.871 1.848385e+03 test 7832763
## 1422 2521.817 2886.871 1.616290e+03 test 7832763
## 1423 2521.817 2886.871 2.566025e+03 test 7832763
## 1424 2521.817 2886.871 1.951506e+03 test 7832763
## 1425 2521.817 2886.871 2.163336e+03 test 7832763
## 1426 2521.817 2886.871 1.714405e+03 test 7832763
## 1427 2521.817 2886.871 1.936508e+03 test 7832763
## 1428 2521.817 2886.871 1.355748e+03 test 7832763
## 1429 2521.817 2886.871 1.246936e+03 test 7832763
## 1430 2521.817 2886.871 1.766747e+03 test 7832763
## 1431 2521.817 2886.871 2.290814e+03 test 7832763
## 1432 2521.817 2886.871 3.001443e+03 test 7832763
## 1433 2521.817 2886.871 1.706109e+03 test 7832763
## 1434 2521.817 2886.871 1.360487e+03 test 7832763
## 1435 2521.817 2886.871 1.577742e+03 test 7832763
## 1436 2521.817 2886.871 1.509546e+03 test 7832763
## 1437 2521.817 2886.871 2.594976e+03 test 7832763
## 1438 2521.817 2886.871 1.725903e+03 test 7832763
## 1439 2521.817 2886.871 1.570328e+03 test 7832763
## 1440 2521.817 2886.871 1.061649e+03 test 7832763
## 1441 2521.817 2886.871 1.779724e+03 test 7832763
## 1442 2521.817 2886.871 1.988485e+03 test 7832763
## 1443 2521.817 2886.871 1.636488e+03 test 7832763
## 1444 2521.817 2886.871 2.767019e+03 test 7832763
## 1445 2521.817 2886.871 1.632431e+03 test 7832763
## 1446 2521.817 2886.871 2.433963e+03 test 7832763
## 1447 2521.817 2886.871 3.448243e+03 test 7832763
## 1448 2521.817 2886.871 1.910085e+03 test 7832763
## 1449 2521.817 2886.871 1.948713e+03 test 7832763
## 1450 2521.817 2886.871 1.600961e+03 test 7832763
## 1451 2521.817 2886.871 2.245014e+03 test 7832763
## 1452 2521.817 2886.871 1.717561e+03 test 7832763
## 1453 2521.817 2886.871 2.126922e+03 test 7832763
## 1454 2521.817 2886.871 1.731998e+03 test 7832763
## 1455 2521.817 2886.871 1.417914e+03 test 7832763
## 1456 2521.817 2886.871 1.634352e+03 test 7832763
## 1457 2521.817 2886.871 1.569647e+03 test 7832763
## 1458 2521.817 2886.871 1.823166e+03 test 7832763
## 1459 2521.817 2886.871 2.194242e+03 test 7832763
## 1460 2521.817 2886.871 1.567974e+03 test 7832763
## 1461 2521.817 2886.871 2.032881e+03 test 7832763
## 1462 2521.817 2886.871 1.441689e+03 test 7832763
## 1463 2521.817 2886.871 1.189100e+03 test 7832763
## 1464 2521.817 2886.871 1.979703e+03 test 7832763
## 1465 2521.817 2886.871 2.116572e+03 test 7832763
## 1466 2521.817 2886.871 1.186392e+03 test 7832763
## 1467 2521.817 2886.871 1.593119e+03 test 7832763
## 1468 2521.817 2886.871 1.923271e+03 test 7832763
## 1469 2521.817 2886.871 1.736524e+03 test 7832763
## 1470 2521.817 2886.871 1.239234e+03 test 7832763
## 1471 2521.817 2886.871 1.686062e+03 test 7832763
## 1472 2521.817 2886.871 1.750158e+03 test 7832763
## 1473 2521.817 2886.871 1.706402e+03 test 7832763
## 1474 2521.817 2886.871 1.539605e+03 test 7832763
## 1475 2521.817 2886.871 2.077299e+03 test 7832763
## 1476 2521.817 2886.871 3.023851e+03 test 7832763
## 1477 2521.817 2886.871 1.558194e+03 test 7832763
## 1478 2521.817 2886.871 4.077439e+02 test 7832763
## 1479 2521.817 2886.871 2.817722e+03 test 7832763
## 1480 2521.817 2886.871 1.240193e+03 test 7832763
## 1481 2521.817 2886.871 2.194555e+03 test 7832763
## 1482 2521.817 2886.871 1.960901e+03 test 7832763
## 1483 2521.817 2886.871 1.886312e+03 test 7832763
## 1484 2521.817 2886.871 1.768980e+03 test 7832763
## 1485 2521.817 2886.871 1.297199e+03 test 7832763
## 1486 2521.817 2886.871 1.194794e+03 test 7832763
## 1487 2521.817 2886.871 1.749892e+03 test 7832763
## 1488 2521.817 2886.871 1.447108e+03 test 7832763
## 1489 2521.817 2886.871 1.613837e+03 test 7832763
## 1490 2521.817 2886.871 1.706399e+03 test 7832763
## 1491 2521.817 2886.871 1.698512e+03 test 7832763
## 1492 2521.817 2886.871 1.399805e+03 test 7832763
## 1493 2521.817 2886.871 1.301575e+03 test 7832763
## 1494 2521.817 2886.871 1.387614e+03 test 7832763
## 1495 2521.817 2886.871 1.475133e+03 test 7832763
## 1496 2521.817 2886.871 2.652806e+03 test 7832763
## 1497 2521.817 2886.871 2.013998e+03 test 7832763
## 1498 2521.817 2886.871 1.102036e+03 test 7832763
## 1499 2521.817 2886.871 1.553912e+03 test 7832763
## 1500 2521.817 2886.871 1.163499e+03 test 7832763
## 1501 2521.817 2886.871 1.123093e+03 test 7832763
## 1502 2521.817 2886.871 1.574461e+03 test 7832763
## 1503 2521.817 2886.871 1.765516e+03 test 7832763
## 1504 2521.817 2886.871 1.725202e+03 test 7832763
## 1505 2521.817 2886.871 1.852074e+03 test 7832763
## 1506 2521.817 2886.871 1.431006e+03 test 7832763
## 1507 2521.817 2886.871 1.023398e+03 test 7832763
## 1508 2521.817 2886.871 1.514071e+03 test 7832763
## 1509 2521.817 2886.871 1.099493e+03 test 7832763
## 1510 2521.817 2886.871 2.665448e+03 test 7832763
## 1511 2521.817 2886.871 1.558360e+03 test 7832763
## 1512 2521.817 2886.871 1.338779e+03 test 7832763
## 1513 2521.817 2886.871 2.016238e+03 test 7832763
## 1514 2521.817 2886.871 2.563925e+03 test 7832763
## 1515 2521.817 2886.871 2.392681e+03 test 7832763
## 1516 2521.817 2886.871 1.336023e+03 test 7832763
## 1517 2521.817 2886.871 1.704198e+03 test 7832763
## 1518 2521.817 2886.871 1.566816e+03 test 7832763
## 1519 2521.817 2886.871 1.972353e+03 test 7832763
## 1520 2521.817 2886.871 1.102308e+03 test 7832763
## 1521 2521.817 2886.871 1.910566e+03 test 7832763
## 1522 2521.817 2886.871 1.303895e+03 test 7832763
## 1523 2521.817 2886.871 3.101947e+03 test 7832763
## 1524 2521.817 2886.871 1.832861e+03 test 7832763
## 1525 2521.817 2886.871 1.853983e+03 test 7832763
## 1526 2521.817 2886.871 1.671969e+03 test 7832763
## 1527 2521.817 2886.871 2.108029e+03 test 7832763
## 1528 2521.817 2886.871 1.387171e+03 test 7832763
## 1529 2521.817 2886.871 1.104431e+03 test 7832763
## 1530 2521.817 2886.871 1.247315e+03 test 7832763
## 1531 2521.817 2886.871 1.012001e+03 test 7832763
## 1532 2521.817 2886.871 1.690111e+03 test 7832763
## 1533 2521.817 2886.871 1.632817e+03 test 7832763
## 1534 2521.817 2886.871 1.454861e+03 test 7832763
## 1535 2521.817 2886.871 1.272313e+03 test 7832763
## 1536 2521.817 2886.871 1.267388e+03 test 7832763
## 1537 2521.817 2886.871 1.353386e+03 test 7832763
## 1538 2521.817 2886.871 1.081289e+03 test 7832763
## 1539 2521.817 2886.871 1.345771e+03 test 7832763
## 1540 2521.817 2886.871 1.570438e+03 test 7832763
## 1541 2521.817 2886.871 1.649209e+03 test 7832763
## 1542 2521.817 2886.871 1.710082e+03 test 7832763
## 1543 2521.817 2886.871 1.704725e+03 test 7832763
## 1544 2521.817 2886.871 1.688574e+03 test 7832763
## 1545 2521.817 2886.871 2.910825e+03 test 7832763
## 1546 2521.817 2886.871 2.313255e+03 test 7832763
## 1547 2521.817 2886.871 1.561002e+03 test 7832763
## 1548 2521.817 2886.871 2.018390e+03 test 7832763
## 1549 2521.817 2886.871 1.869564e+03 test 7832763
## 1550 2521.817 2886.871 2.052652e+03 test 7832763
## 1551 2521.817 2886.871 1.508766e+03 test 7832763
## 1552 2521.817 2886.871 1.803560e+03 test 7832763
## 1553 2521.817 2886.871 1.228003e+03 test 7832763
## 1554 2521.817 2886.871 1.799374e+03 test 7832763
## 1555 2521.817 2886.871 1.387851e+03 test 7832763
## 1556 2521.817 2886.871 1.846737e+03 test 7832763
## 1557 2521.817 2886.871 2.269139e+03 test 7832763
## 1558 2521.817 2886.871 1.447370e+03 test 7832763
## 1559 2521.817 2886.871 1.341101e+03 test 7832763
## 1560 2521.817 2886.871 1.654994e+03 test 7832763
## 1561 2521.817 2886.871 1.468608e+03 test 7832763
## 1562 2521.817 2886.871 1.365274e+03 test 7832763
## 1563 2521.817 2886.871 1.005574e+03 test 7832763
## 1564 2521.817 2886.871 1.779058e+03 test 7832763
## 1565 2521.817 2886.871 1.361405e+03 test 7832763
## 1566 2521.817 2886.871 1.545449e+03 test 7832763
## 1567 2521.817 2886.871 1.905792e+03 test 7832763
## 1568 2521.817 2886.871 1.328270e+03 test 7832763
## 1569 2521.817 2886.871 2.482541e+03 test 7832763
## 1570 2521.817 2886.871 2.027071e+03 test 7832763
## 1571 2521.817 2886.871 1.291411e+03 test 7832763
## 1572 2521.817 2886.871 1.503934e+03 test 7832763
## 1573 2521.817 2886.871 1.774250e+03 test 7832763
## 1574 2521.817 2886.871 2.182914e+03 test 7832763
## 1575 2521.817 2886.871 1.555143e+03 test 7832763
## 1576 2521.817 2886.871 2.316695e+03 test 7832763
## 1577 2521.817 2886.871 1.230070e+03 test 7832763
## 1578 2521.817 2886.871 1.875567e+03 test 7832763
## 1579 2521.817 2886.871 1.224500e+03 test 7832763
## 1580 2521.817 2886.871 2.630781e+03 test 7832763
## 1581 2521.817 2886.871 2.750711e+03 test 7832763
## 1582 2521.817 2886.871 1.959582e+03 test 7832763
## 1583 2521.817 2886.871 1.127281e+03 test 7832763
## 1584 2521.817 2886.871 1.525009e+03 test 7832763
## 1585 2521.817 2886.871 1.600530e+03 test 7832763
## 1586 2521.817 2886.871 1.669104e+03 test 7832763
## 1587 2521.817 2886.871 1.496481e+03 test 7832763
## 1588 2521.817 2886.871 1.513979e+03 test 7832763
## 1589 2521.817 2886.871 1.467333e+03 test 7832763
## 1590 2521.817 2886.871 1.610911e+03 test 7832763
## 1591 2521.817 2886.871 1.425774e+03 test 7832763
## 1592 2521.817 2886.871 1.385418e+03 test 7832763
## 1593 2521.817 2886.871 1.308761e+03 test 7832763
## 1594 2521.817 2886.871 1.905814e+03 test 7832763
## 1595 2521.817 2886.871 1.643632e+03 test 7832763
## 1596 2521.817 2886.871 1.788030e+03 test 7832763
## 1597 2521.817 2886.871 1.496299e+03 test 7832763
## 1598 2521.817 2886.871 1.999395e+03 test 7832763
## 1599 2521.817 2886.871 1.655898e+03 test 7832763
## 1600 2521.817 2886.871 1.272173e+03 test 7832763
## 1601 2521.817 2886.871 1.836459e+03 test 7832763
## 1602 2521.817 2886.871 1.765833e+03 test 7832763
## 1603 2521.817 2886.871 1.499592e+03 test 7832763
## 1604 2521.817 2886.871 1.901422e+03 test 7832763
## 1605 2521.817 2886.871 1.382796e+03 test 7832763
## 1606 2521.817 2886.871 1.307417e+03 test 7832763
## 1607 2521.817 2886.871 2.011005e+03 test 7832763
## 1608 2521.817 2886.871 1.340311e+03 test 7832763
## 1609 2521.817 2886.871 3.238264e+03 test 7832763
## 1610 2521.817 2886.871 1.336815e+03 test 7832763
## 1611 2521.817 2886.871 1.085373e+03 test 7832763
## 1612 2521.817 2886.871 1.709830e+03 test 7832763
## 1613 2521.817 2886.871 1.544950e+03 test 7832763
## 1614 2521.817 2886.871 1.198345e+03 test 7832763
## 1615 2521.817 2886.871 1.277547e+03 test 7832763
## 1616 2521.817 2886.871 1.732113e+03 test 7832763
## 1617 2521.817 2886.871 1.675616e+03 test 7832763
## 1618 2521.817 2886.871 1.872491e+03 test 7832763
## 1619 2521.817 2886.871 1.856670e+03 test 7832763
## 1620 2521.817 2886.871 1.334228e+03 test 7832763
## 1621 2521.817 2886.871 1.475599e+03 test 7832763
## 1622 2521.817 2886.871 1.404229e+03 test 7832763
## 1623 2521.817 2886.871 1.320213e+03 test 7832763
## 1624 2521.817 2886.871 2.003385e+03 test 7832763
## 1625 2521.817 2886.871 3.258260e+03 test 7832763
## 1626 2521.817 2886.871 1.780655e+03 test 7832763
## 1627 2521.817 2886.871 1.746733e+03 test 7832763
## 1628 2521.817 2886.871 1.471270e+03 test 7832763
## 1629 2521.817 2886.871 1.555080e+03 test 7832763
## 1630 2521.817 2886.871 1.311371e+03 test 7832763
## 1631 2521.817 2886.871 1.324207e+03 test 7832763
## 1632 2521.817 2886.871 1.718557e+03 test 7832763
## 1633 2521.817 2886.871 1.627112e+03 test 7832763
## 1634 2521.817 2886.871 1.255060e+03 test 7832763
## 1635 2521.817 2886.871 1.067331e+03 test 7832763
## 1636 2521.817 2886.871 2.045438e+03 test 7832763
## 1637 2521.817 2886.871 1.348910e+03 test 7832763
## 1638 2521.817 2886.871 1.688873e+03 test 7832763
## 1639 2521.817 2886.871 1.317283e+03 test 7832763
## 1640 2521.817 2886.871 1.099316e+03 test 7832763
## 1641 2521.817 2886.871 1.836486e+03 test 7832763
## 1642 2521.817 2886.871 1.749365e+03 test 7832763
## 1643 2521.817 2886.871 1.328673e+03 test 7832763
## 1644 2521.817 2886.871 1.751153e+03 test 7832763
## 1645 2521.817 2886.871 1.523430e+03 test 7832763
## 1646 2521.817 2886.871 3.143734e+03 test 7832763
## 1647 2521.817 2886.871 1.737429e+03 test 7832763
## 1648 2521.817 2886.871 1.831698e+03 test 7832763
## 1649 2521.817 2886.871 1.512580e+03 test 7832763
## 1650 2521.817 2886.871 1.530111e+03 test 7832763
## 1651 2521.817 2886.871 1.391719e+03 test 7832763
## 1652 2521.817 2886.871 1.249979e+03 test 7832763
## 1653 2521.817 2886.871 9.485222e+02 test 7832763
## 1654 2521.817 2886.871 1.183854e+03 test 7832763
## 1655 2521.817 2886.871 2.094055e+03 test 7832763
## 1656 2521.817 2886.871 1.750704e+03 test 7832763
## 1657 2521.817 2886.871 1.035789e+03 test 7832763
## 1658 2521.817 2886.871 1.874688e+03 test 7832763
## 1659 2521.817 2886.871 1.608369e+03 test 7832763
## 1660 2521.817 2886.871 1.885612e+03 test 7832763
## 1661 2521.817 2886.871 1.251531e+03 test 7832763
## 1662 2521.817 2886.871 1.663878e+03 test 7832763
## 1663 2521.817 2886.871 7.832399e+02 test 7832763
## 1664 2521.817 2886.871 1.172746e+03 test 7832763
## 1665 2521.817 2886.871 1.602353e+03 test 7832763
## 1666 2521.817 2886.871 1.995786e+03 test 7832763
## 1667 2521.817 2886.871 2.919899e+03 test 7832763
## 1668 2521.817 2886.871 2.715532e+03 test 7832763
## 1669 2521.817 2886.871 3.261288e+03 test 7832763
## 1670 2521.817 2886.871 2.365029e+03 test 7832763
## 1671 2521.817 2886.871 1.727822e+03 test 7832763
## 1672 2521.817 2886.871 1.101336e+03 test 7832763
## 1673 2521.817 2886.871 1.639145e+03 test 7832763
## 1674 2521.817 2886.871 1.133010e+03 test 7832763
## 1675 2521.817 2886.871 1.287281e+03 test 7832763
## 1676 2521.817 2886.871 1.688470e+03 test 7832763
## 1677 2521.817 2886.871 1.913355e+03 test 7832763
## 1678 2521.817 2886.871 1.665143e+03 test 7832763
## 1679 2521.817 2886.871 1.803479e+03 test 7832763
## 1680 2521.817 2886.871 2.794629e+03 test 7832763
## 1681 2521.817 2886.871 2.362100e+03 test 7832763
## 1682 2521.817 2886.871 1.599113e+03 test 7832763
## 1683 2521.817 2886.871 2.794344e+03 test 7832763
## 1684 2521.817 2886.871 2.654452e+03 test 7832763
## 1685 2521.817 2886.871 1.536508e+03 test 7832763
## 1686 2521.817 2886.871 1.363074e+03 test 7832763
## 1687 2521.817 2886.871 1.365382e+03 test 7832763
## 1688 2521.817 2886.871 8.134725e+02 test 7832763
## 1689 2521.817 2886.871 1.401837e+03 test 7832763
## 1690 2521.817 2886.871 1.275272e+03 test 7832763
## 1691 2521.817 2886.871 6.474572e+02 test 7832763
## 1692 2521.817 2886.871 6.779990e+02 test 7832763
## 1693 2521.817 2886.871 1.094726e+03 test 7832763
## 1694 2521.817 2886.871 1.284833e+03 test 7832763
## 1695 2521.817 2886.871 1.632790e+03 test 7832763
## 1696 2521.817 2886.871 1.482141e+03 test 7832763
## 1697 2521.817 2886.871 1.281125e+03 test 7832763
## 1698 2521.817 2886.871 1.394973e+03 test 7832763
## 1699 2521.817 2886.871 1.019648e+03 test 7832763
## 1700 2521.817 2886.871 1.495351e+03 test 7832763
## 1701 2521.817 2886.871 1.291561e+03 test 7832763
## 1702 2521.817 2886.871 1.362073e+03 test 7832763
## 1703 2521.817 2886.871 1.357011e+03 test 7832763
## 1704 2521.817 2886.871 1.232836e+03 test 7832763
## 1705 2521.817 2886.871 1.185583e+03 test 7832763
## 1706 2521.817 2886.871 1.253809e+03 test 7832763
## 1707 2521.817 2886.871 6.444967e+02 test 7832763
## 1708 2521.817 2886.871 1.296702e+03 test 7832763
## 1709 2521.817 2886.871 1.354305e+03 test 7832763
## 1710 2521.817 2886.871 1.659865e+03 test 7832763
## 1711 2521.817 2886.871 1.359315e+03 test 7832763
## 1712 2521.817 2886.871 1.593952e+03 test 7832763
## 1713 2521.817 2886.871 1.077552e+03 test 7832763
## 1714 2521.817 2886.871 1.844561e+03 test 7832763
## 1715 2521.817 2886.871 1.378994e+03 test 7832763
## 1716 2521.817 2886.871 1.217334e+03 test 7832763
## 1717 2521.817 2886.871 1.281361e+03 test 7832763
## 1718 2521.817 2886.871 1.286374e+03 test 7832763
## 1719 2521.817 2886.871 8.023132e+02 test 7832763
## 1720 2521.817 2886.871 9.249999e+02 test 7832763
## 1721 2521.817 2886.871 1.382536e+03 test 7832763
## 1722 2521.817 2886.871 1.085465e+03 test 7832763
## 1723 2521.817 2886.871 6.780809e+02 test 7832763
## 1724 2521.817 2886.871 1.672843e+03 test 7832763
## 1725 2521.817 2886.871 1.471451e+03 test 7832763
## 1726 2521.817 2886.871 1.771552e+03 test 7832763
## 1727 2521.817 2886.871 1.900430e+03 test 7832763
## 1728 2521.817 2886.871 2.495029e+03 test 7832763
## 1729 2521.817 2886.871 2.434706e+03 test 7832763
## 1730 2521.817 2886.871 9.010064e+02 test 7832763
## 1731 2521.817 2886.871 1.624835e+03 test 7832763
## 1732 2521.817 2886.871 7.996415e+02 test 7832763
## 1733 2521.817 2886.871 9.479165e+02 test 7832763
## 1734 2521.817 2886.871 1.393161e+03 test 7832763
## 1735 2521.817 2886.871 1.527405e+03 test 7832763
## 1736 2521.817 2886.871 1.199898e+03 test 7832763
## 1737 2521.817 2886.871 1.242589e+03 test 7832763
## 1738 2521.817 2886.871 1.461150e+03 test 7832763
## 1739 2521.817 2886.871 2.125578e+03 test 7832763
## 1740 2521.817 2886.871 1.626793e+03 test 7832763
## 1741 2521.817 2886.871 1.626976e+03 test 7832763
## 1742 2521.817 2886.871 7.990752e+02 test 7832763
## 1743 2521.817 2886.871 1.359447e+03 test 7832763
## 1744 2521.817 2886.871 1.444937e+03 test 7832763
## 1745 2521.817 2886.871 1.110690e+03 test 7832763
## 1746 2521.817 2886.871 1.346143e+03 test 7832763
## 1747 2521.817 2886.871 1.891220e+03 test 7832763
## 1748 2521.817 2886.871 2.569922e+03 test 7832763
## 1749 2521.817 2886.871 1.851641e+03 test 7832763
## 1750 2521.817 2886.871 1.227362e+03 test 7832763
## 1751 2521.817 2886.871 1.185561e+03 test 7832763
## 1752 2521.817 2886.871 1.105132e+03 test 7832763
## 1753 2521.817 2886.871 1.557690e+03 test 7832763
## 1754 2521.817 2886.871 1.612331e+03 test 7832763
## 1755 2521.817 2886.871 1.159075e+03 test 7832763
## 1756 2521.817 2886.871 1.264052e+03 test 7832763
## 1757 2521.817 2886.871 1.491127e+03 test 7832763
## 1758 2521.817 2886.871 1.099776e+03 test 7832763
## 1759 2521.817 2886.871 1.785027e+03 test 7832763
## 1760 2521.817 2886.871 3.189693e+03 test 7832763
## 1761 2521.817 2886.871 1.417040e+03 test 7832763
## 1762 2521.817 2886.871 1.674040e+03 test 7832763
## 1763 2521.817 2886.871 1.363158e+03 test 7832763
## 1764 2521.817 2886.871 1.122941e+03 test 7832763
## 1765 2521.817 2886.871 7.381673e+02 test 7832763
## 1766 2521.817 2886.871 1.150089e+03 test 7832763
## 1767 2521.817 2886.871 1.838274e+03 test 7832763
## 1768 2521.817 2886.871 8.072259e+02 test 7832763
## 1769 2521.817 2886.871 1.630048e+03 test 7832763
## 1770 2521.817 2886.871 1.608831e+03 test 7832763
## 1771 2521.817 2886.871 8.989077e+02 test 7832763
## 1772 2521.817 2886.871 1.633343e+03 test 7832763
## 1773 2521.817 2886.871 1.483682e+03 test 7832763
## 1774 2521.817 2886.871 9.110460e+02 test 7832763
## 1775 2521.817 2886.871 1.908166e+03 test 7832763
## 1776 2521.817 2886.871 1.169565e+03 test 7832763
## 1777 2521.817 2886.871 7.701703e+02 test 7832763
## 1778 2521.817 2886.871 1.703207e+03 test 7832763
## 1779 2521.817 2886.871 1.127138e+03 test 7832763
## 1780 2521.817 2886.871 1.871253e+03 test 7832763
## 1781 2521.817 2886.871 1.908775e+03 test 7832763
## 1782 2521.817 2886.871 1.939816e+03 test 7832763
## 1783 2521.817 2886.871 1.446989e+03 test 7832763
## 1784 2521.817 2886.871 1.172148e+03 test 7832763
## 1785 2521.817 2886.871 9.789818e+02 test 7832763
## 1786 2521.817 2886.871 1.381617e+03 test 7832763
## 1787 2521.817 2886.871 1.334404e+03 test 7832763
## 1788 2521.817 2886.871 1.619373e+03 test 7832763
## 1789 2521.817 2886.871 1.174764e+03 test 7832763
## 1790 2521.817 2886.871 2.229519e+03 test 7832763
## 1791 2521.817 2886.871 1.626436e+03 test 7832763
## 1792 2521.817 2886.871 1.155251e+03 test 7832763
## 1793 2521.817 2886.871 1.165495e+03 test 7832763
## 1794 2521.817 2886.871 1.079533e+03 test 7832763
## 1795 2521.817 2886.871 1.099611e+03 test 7832763
## 1796 2521.817 2886.871 1.688042e+03 test 7832763
## 1797 2521.817 2886.871 1.567106e+03 test 7832763
## 1798 2521.817 2886.871 1.922224e+03 test 7832763
## 1799 2521.817 2886.871 1.345679e+03 test 7832763
## 1800 2521.817 2886.871 8.783806e+02 test 7832763
## 1801 2521.817 2886.871 1.412238e+03 test 7832763
## 1802 2521.817 2886.871 7.750548e+02 test 7832763
## 1803 2521.817 2886.871 9.068579e+02 test 7832763
## 1804 2521.817 2886.871 1.473401e+03 test 7832763
## 1805 2521.817 2886.871 1.621433e+03 test 7832763
## 1806 2521.817 2886.871 9.480824e+02 test 7832763
## 1807 2521.817 2886.871 1.273055e+03 test 7832763
## 1808 2521.817 2886.871 1.159640e+03 test 7832763
## 1809 2521.817 2886.871 1.551580e+03 test 7832763
## 1810 2521.817 2886.871 1.042031e+03 test 7832763
## 1811 2521.817 2886.871 2.163469e+03 test 7832763
## 1812 2521.817 2886.871 2.178514e+03 test 7832763
## 1813 2521.817 2886.871 1.160568e+03 test 7832763
## 1814 2521.817 2886.871 2.537879e+03 test 7832763
## 1815 2521.817 2886.871 1.807175e+03 test 7832763
## 1816 2521.817 2886.871 1.181585e+03 test 7832763
## 1817 2521.817 2886.871 1.654929e+03 test 7832763
## 1818 2521.817 2886.871 1.115547e+03 test 7832763
## 1819 2521.817 2886.871 3.207050e+03 test 7832763
## 1820 2521.817 2886.871 1.239851e+03 test 7832763
## 1821 2521.817 2886.871 1.645906e+03 test 7832763
## 1822 2521.817 2886.871 1.006543e+03 test 7832763
## 1823 2521.817 2886.871 8.350408e+02 test 7832763
## 1824 2521.817 2886.871 1.126639e+03 test 7832763
## 1825 2521.817 2886.871 3.636132e+03 test 7832763
## 1826 2521.817 2886.871 1.425705e+03 test 7832763
## 1827 2521.817 2886.871 9.404270e+02 test 7832763
## 1828 2521.817 2886.871 9.329640e+02 test 7832763
## 1829 2521.817 2886.871 1.451349e+03 test 7832763
## 1830 2521.817 2886.871 1.228162e+03 test 7832763
## 1831 2521.817 2886.871 1.104600e+03 test 7832763
## 1832 2521.817 2886.871 1.031657e+03 test 7832763
## 1833 2521.817 2886.871 1.578352e+03 test 7832763
## 1834 2521.817 2886.871 7.611160e+02 test 7832763
## 1835 2521.817 2886.871 1.362684e+03 test 7832763
## 1836 2521.817 2886.871 1.080710e+03 test 7832763
## 1837 2521.817 2886.871 1.016376e+03 test 7832763
## 1838 2521.817 2886.871 1.378522e+03 test 7832763
## 1839 2521.817 2886.871 1.118434e+03 test 7832763
## 1840 2521.817 2886.871 3.626785e+03 test 7832763
## 1841 2521.817 2886.871 1.271224e+03 test 7832763
## 1842 2521.817 2886.871 1.248397e+03 test 7832763
## 1843 2521.817 2886.871 1.148858e+03 test 7832763
## 1844 2521.817 2886.871 1.764507e+03 test 7832763
## 1845 2521.817 2886.871 1.889339e+03 test 7832763
## 1846 2521.817 2886.871 3.138409e+03 test 7832763
## 1847 2521.817 2886.871 1.067038e+03 test 7832763
## 1848 2521.817 2886.871 1.083137e+03 test 7832763
## 1849 2521.817 2886.871 2.797344e+03 test 7832763
## 1850 2521.817 2886.871 1.675095e+03 test 7832763
## 1851 2521.817 2886.871 7.525626e+02 test 7832763
## 1852 2521.817 2886.871 1.085493e+03 test 7832763
## 1853 2521.817 2886.871 1.548949e+03 test 7832763
## 1854 2521.817 2886.871 1.353447e+03 test 7832763
## 1855 2521.817 2886.871 9.772924e+02 test 7832763
## 1856 2521.817 2886.871 1.301334e+03 test 7832763
## 1857 2521.817 2886.871 1.221776e+03 test 7832763
## 1858 2521.817 2886.871 1.864369e+03 test 7832763
## 1859 2521.817 2886.871 1.056410e+03 test 7832763
## 1860 2521.817 2886.871 9.810219e+02 test 7832763
## 1861 2521.817 2886.871 3.087803e+03 test 7832763
## 1862 2521.817 2886.871 1.226191e+03 test 7832763
## 1863 2521.817 2886.871 1.912980e+03 test 7832763
## 1864 2521.817 2886.871 1.455991e+03 test 7832763
## 1865 2521.817 2886.871 2.701904e+03 test 7832763
## 1866 2521.817 2886.871 1.882065e+03 test 7832763
## 1867 2521.817 2886.871 2.730421e+03 test 7832763
## 1868 2521.817 2886.871 1.022458e+03 test 7832763
## 1869 2521.817 2886.871 1.059253e+03 test 7832763
## 1870 2521.817 2886.871 1.410358e+03 test 7832763
## 1871 2521.817 2886.871 1.243391e+03 test 7832763
## 1872 2521.817 2886.871 1.069332e+03 test 7832763
## 1873 2521.817 2886.871 1.334623e+03 test 7832763
## 1874 2521.817 2886.871 9.071789e+02 test 7832763
## 1875 2521.817 2886.871 1.877140e+03 test 7832763
## 1876 2521.817 2886.871 1.013138e+03 test 7832763
## 1877 2521.817 2886.871 1.408987e+03 test 7832763
## 1878 2521.817 2886.871 1.263638e+03 test 7832763
## 1879 2521.817 2886.871 1.104228e+03 test 7832763
## 1880 2521.817 2886.871 1.372752e+03 test 7832763
## 1881 2521.817 2886.871 9.625208e+02 test 7832763
## 1882 2521.817 2886.871 1.507342e+03 test 7832763
## 1883 2521.817 2886.871 1.215981e+03 test 7832763
## 1884 2521.817 2886.871 1.171192e+03 test 7832763
## 1885 2521.817 2886.871 1.533625e+03 test 7832763
## 1886 2521.817 2886.871 2.156073e+03 test 7832763
## 1887 2521.817 2886.871 1.056786e+03 test 7832763
## 1888 2521.817 2886.871 1.147375e+03 test 7832763
## 1889 2521.817 2886.871 1.153468e+03 test 7832763
## 1890 2521.817 2886.871 1.657892e+03 test 7832763
## 1891 2521.817 2886.871 1.297465e+03 test 7832763
## 1892 2521.817 2886.871 9.866760e+02 test 7832763
## 1893 2521.817 2886.871 9.484099e+02 test 7832763
## 1894 2521.817 2886.871 1.036778e+03 test 7832763
## 1895 2521.817 2886.871 1.181864e+03 test 7832763
## 1896 2521.817 2886.871 2.515296e+03 test 7832763
## 1897 2521.817 2886.871 1.859115e+03 test 7832763
## 1898 2521.817 2886.871 1.126911e+03 test 7832763
## 1899 2521.817 2886.871 9.317554e+02 test 7832763
## 1900 2521.817 2886.871 1.597582e+03 test 7832763
## 1901 2521.817 2886.871 1.275588e+03 test 7832763
## 1902 2521.817 2886.871 9.503889e+02 test 7832763
## 1903 2521.817 2886.871 2.050874e+03 test 7832763
## 1904 2521.817 2886.871 1.026437e+03 test 7832763
## 1905 2521.817 2886.871 1.018853e+03 test 7832763
## 1906 2521.817 2886.871 1.862588e+03 test 7832763
## 1907 2521.817 2886.871 1.753724e+03 test 7832763
## 1908 2521.817 2886.871 1.490762e+03 test 7832763
## 1909 2521.817 2886.871 1.078438e+03 test 7832763
## 1910 2521.817 2886.871 2.499421e+03 test 7832763
## 1911 2521.817 2886.871 1.680876e+03 test 7832763
## 1912 2521.817 2886.871 1.301675e+03 test 7832763
## 1913 2521.817 2886.871 1.081532e+03 test 7832763
## 1914 2521.817 2886.871 1.022498e+03 test 7832763
## 1915 2521.817 2886.871 1.850758e+03 test 7832763
## 1916 2521.817 2886.871 1.484858e+03 test 7832763
## 1917 2521.817 2886.871 1.054742e+03 test 7832763
## 1918 2521.817 2886.871 9.273127e+02 test 7832763
## 1919 2521.817 2886.871 1.265791e+03 test 7832763
## 1920 2521.817 2886.871 7.791890e+02 test 7832763
## 1921 2521.817 2886.871 1.633333e+03 test 7832763
## 1922 2521.817 2886.871 1.214672e+03 test 7832763
## 1923 2521.817 2886.871 1.143074e+03 test 7832763
## 1924 2521.817 2886.871 1.019991e+03 test 7832763
## 1925 2521.817 2886.871 1.319533e+03 test 7832763
## 1926 2521.817 2886.871 1.281683e+03 test 7832763
## 1927 2521.817 2886.871 8.202865e+02 test 7832763
## 1928 2521.817 2886.871 1.317704e+03 test 7832763
## 1929 2521.817 2886.871 1.358995e+03 test 7832763
## 1930 2521.817 2886.871 1.028032e+03 test 7832763
## 1931 2521.817 2886.871 2.009540e+03 test 7832763
## 1932 2521.817 2886.871 9.660310e+02 test 7832763
## 1933 2521.817 2886.871 1.222432e+03 test 7832763
## 1934 2521.817 2886.871 1.276696e+03 test 7832763
## 1935 2521.817 2886.871 2.021725e+03 test 7832763
## 1936 2521.817 2886.871 9.419957e+02 test 7832763
## 1937 2521.817 2886.871 1.973813e+03 test 7832763
## 1938 2521.817 2886.871 2.415706e+03 test 7832763
## 1939 2521.817 2886.871 1.941347e+03 test 7832763
## 1940 2521.817 2886.871 8.455072e+02 test 7832763
## 1941 2521.817 2886.871 1.004679e+03 test 7832763
## 1942 2521.817 2886.871 1.484745e+03 test 7832763
## 1943 2521.817 2886.871 1.130986e+03 test 7832763
## 1944 2521.817 2886.871 1.730235e+03 test 7832763
## 1945 2521.817 2886.871 1.160934e+03 test 7832763
## 1946 2521.817 2886.871 1.612182e+03 test 7832763
## 1947 2521.817 2886.871 1.396495e+03 test 7832763
## 1948 2521.817 2886.871 2.375731e+03 test 7832763
## 1949 2521.817 2886.871 2.890662e+03 test 7832763
## 1950 2521.817 2886.871 1.388469e+03 test 7832763
## 1951 2521.817 2886.871 1.038359e+03 test 7832763
## 1952 2521.817 2886.871 1.384584e+03 test 7832763
## 1953 2521.817 2886.871 1.318502e+03 test 7832763
## 1954 2521.817 2886.871 1.768449e+03 test 7832763
## 1955 2521.817 2886.871 1.067747e+03 test 7832763
## 1956 2521.817 2886.871 9.121901e+02 test 7832763
## 1957 2521.817 2886.871 9.485550e+02 test 7832763
## 1958 2521.817 2886.871 1.165409e+03 test 7832763
## 1959 2521.817 2886.871 1.548910e+03 test 7832763
## 1960 2521.817 2886.871 9.937266e+02 test 7832763
## 1961 2521.817 2886.871 9.334690e+02 test 7832763
## 1962 2521.817 2886.871 1.994980e+03 test 7832763
## 1963 2521.817 2886.871 1.040626e+03 test 7832763
## 1964 2521.817 2886.871 1.002627e+03 test 7832763
## 1965 2521.817 2886.871 1.866140e+03 test 7832763
## 1966 2521.817 2886.871 1.053011e+03 test 7832763
## 1967 2521.817 2886.871 1.608210e+03 test 7832763
## 1968 2521.817 2886.871 1.308793e+03 test 7832763
## 1969 2521.817 2886.871 1.008871e+03 test 7832763
## 1970 2521.817 2886.871 1.260142e+03 test 7832763
## 1971 2521.817 2886.871 1.153403e+03 test 7832763
## 1972 2521.817 2886.871 2.065601e+03 test 7832763
## 1973 2521.817 2886.871 1.871426e+03 test 7832763
## 1974 2521.817 2886.871 9.136821e+02 test 7832763
## 1975 2521.817 2886.871 1.058724e+03 test 7832763
## 1976 2521.817 2886.871 1.863517e+03 test 7832763
## 1977 2521.817 2886.871 8.509260e+02 test 7832763
## 1978 2521.817 2886.871 1.745016e+03 test 7832763
## 1979 2521.817 2886.871 1.761851e+03 test 7832763
## 1980 2521.817 2886.871 1.745744e+03 test 7832763
## 1981 2521.817 2886.871 1.000572e+03 test 7832763
## 1982 2521.817 2886.871 1.743854e+03 test 7832763
## 1983 2521.817 2886.871 1.267877e+03 test 7832763
## 1984 2521.817 2886.871 1.484640e+03 test 7832763
## 1985 2521.817 2886.871 1.077105e+03 test 7832763
## 1986 2521.817 2886.871 1.086389e+03 test 7832763
## 1987 2521.817 2886.871 1.002011e+03 test 7832763
## 1988 2521.817 2886.871 8.524273e+02 test 7832763
## 1989 2521.817 2886.871 2.054475e+03 test 7832763
## 1990 2521.817 2886.871 2.147092e+03 test 7832763
## 1991 2521.817 2886.871 2.720973e+03 test 7832763
## 1992 2521.817 2886.871 1.050946e+03 test 7832763
## 1993 2521.817 2886.871 9.877440e+02 test 7832763
## 1994 2521.817 2886.871 1.230614e+03 test 7832763
## 1995 2521.817 2886.871 1.459114e+03 test 7832763
## 1996 2521.817 2886.871 1.811748e+03 test 7832763
## 1997 2521.817 2886.871 7.417620e+02 test 7832763
## 1998 2521.817 2886.871 6.556168e+02 test 7832763
## 1999 2521.817 2886.871 1.859862e+03 test 7832763
## 2000 2521.817 2886.871 1.436529e+03 test 7832763
## 2001 2521.817 2886.871 9.096640e+02 test 7832763
## 2002 2521.817 2886.871 1.476206e+03 test 7832763
## 2003 2521.817 2886.871 1.452195e+03 test 7832763
## 2004 2521.817 2886.871 1.303640e+03 test 7832763
## 2005 2521.817 2886.871 9.271875e+02 test 7832763
## 2006 2521.817 2886.871 9.330266e+02 test 7832763
## 2007 2521.817 2886.871 1.103415e+03 test 7832763
## 2008 2521.817 2886.871 1.565724e+03 test 7832763
## 2009 2521.817 2886.871 1.043447e+03 test 7832763
## 2010 2521.817 2886.871 9.936701e+02 test 7832763
## 2011 2521.817 2886.871 2.124544e+03 test 7832763
## 2012 2521.817 2886.871 7.987130e+02 test 7832763
## 2013 2521.817 2886.871 1.083556e+03 test 7832763
## 2014 2521.817 2886.871 8.507795e+02 test 7832763
## 2015 2521.817 2886.871 8.072549e+02 test 7832763
## 2016 2521.817 2886.871 1.680122e+03 test 7832763
## 2017 2521.817 2886.871 6.850867e+02 test 7832763
## 2018 2521.817 2886.871 8.248497e+02 test 7832763
## 2019 2521.817 2886.871 1.370327e+03 test 7832763
## 2020 2521.817 2886.871 2.012721e+03 test 7832763
## 2021 2521.817 2886.871 2.978485e+03 test 7832763
## 2022 2521.817 2886.871 4.062891e+03 test 7832763
## 2023 2521.817 2886.871 1.481462e+03 test 7832763
## 2024 2521.817 2886.871 1.663723e+03 test 7832763
## 2025 2521.817 2886.871 1.079375e+03 test 7832763
## 2026 2521.817 2886.871 8.409569e+02 test 7832763
## 2027 2521.817 2886.871 1.091027e+03 test 7832763
## 2028 2521.817 2886.871 8.733292e+02 test 7832763
## 2029 2521.817 2886.871 1.004391e+03 test 7832763
## 2030 2521.817 2886.871 1.012239e+03 test 7832763
## 2031 2521.817 2886.871 7.841043e+02 test 7832763
## 2032 2521.817 2886.871 1.702935e+03 test 7832763
## 2033 2521.817 2886.871 1.808146e+03 test 7832763
## 2034 2521.817 2886.871 1.901748e+03 test 7832763
## 2035 2521.817 2886.871 1.689719e+03 test 7832763
## 2036 2521.817 2886.871 5.635266e+02 test 7832763
## 2037 2521.817 2886.871 9.312857e+02 test 7832763
## 2038 2521.817 2886.871 1.030940e+03 test 7832763
## 2039 2521.817 2886.871 9.241061e+02 test 7832763
## 2040 2521.817 2886.871 1.529450e+03 test 7832763
## 2041 2521.817 2886.871 1.475753e+03 test 7832763
## 2042 2521.817 2886.871 7.070599e+02 test 7832763
## 2043 2521.817 2886.871 8.805795e+02 test 7832763
## 2044 2521.817 2886.871 8.063913e+02 test 7832763
## 2045 2521.817 2886.871 1.061393e+03 test 7832763
## 2046 2521.817 2886.871 1.513998e+03 test 7832763
## 2047 2521.817 2886.871 1.544015e+03 test 7832763
## 2048 2521.817 2886.871 8.412394e+02 test 7832763
## 2049 2521.817 2886.871 1.367696e+03 test 7832763
## 2050 2521.817 2886.871 1.010388e+03 test 7832763
## 2051 2521.817 2886.871 1.457530e+03 test 7832763
## 2052 2521.817 2886.871 1.559566e+03 test 7832763
## 2053 2521.817 2886.871 2.734307e+03 test 7832763
## 2054 2521.817 2886.871 9.892541e+02 test 7832763
## 2055 2521.817 2886.871 7.699639e+02 test 7832763
## 2056 2521.817 2886.871 6.956237e+02 test 7832763
## 2057 2521.817 2886.871 1.781084e+03 test 7832763
## 2058 2521.817 2886.871 1.142156e+03 test 7832763
## 2059 2521.817 2886.871 9.993781e+02 test 7832763
## 2060 2521.817 2886.871 9.076449e+02 test 7832763
## 2061 2521.817 2886.871 1.667215e+03 test 7832763
## 2062 2521.817 2886.871 1.461900e+03 test 7832763
## 2063 2521.817 2886.871 1.833488e+03 test 7832763
## 2064 2521.817 2886.871 7.745279e+02 test 7832763
## 2065 2521.817 2886.871 1.591427e+03 test 7832763
## 2066 2521.817 2886.871 1.654678e+03 test 7832763
## 2067 2521.817 2886.871 1.228654e+03 test 7832763
## 2068 2521.817 2886.871 1.647647e+03 test 7832763
## 2069 2521.817 2886.871 7.758849e+02 test 7832763
## 2070 2521.817 2886.871 8.207226e+02 test 7832763
## 2071 2521.817 2886.871 1.709779e+03 test 7832763
## 2072 2521.817 2886.871 7.311061e+02 test 7832763
## 2073 2521.817 2886.871 8.460246e+02 test 7832763
## 2074 2521.817 2886.871 6.977209e+02 test 7832763
## 2075 2521.817 2886.871 9.768418e+02 test 7832763
## 2076 2521.817 2886.871 9.658837e+02 test 7832763
## 2077 2521.817 2886.871 5.119352e+02 test 7832763
## 2078 2521.817 2886.871 1.395761e+03 test 7832763
## 2079 2521.817 2886.871 1.068400e+03 test 7832763
## 2080 2521.817 2886.871 1.051262e+03 test 7832763
## 2081 2521.817 2886.871 1.483763e+03 test 7832763
## 2082 2521.817 2886.871 1.129091e+03 test 7832763
## 2083 2521.817 2886.871 1.518231e+03 test 7832763
## 2084 2521.817 2886.871 1.154414e+03 test 7832763
## 2085 2521.817 2886.871 8.108953e+02 test 7832763
## 2086 2521.817 2886.871 1.404807e+03 test 7832763
## 2087 2521.817 2886.871 6.537786e+02 test 7832763
## 2088 2521.817 2886.871 9.608670e+02 test 7832763
## 2089 2521.817 2886.871 1.229470e+03 test 7832763
## 2090 2521.817 2886.871 6.954924e+02 test 7832763
## 2091 2521.817 2886.871 4.632981e+02 test 7832763
## 2092 2521.817 2886.871 1.521415e+03 test 7832763
## 2093 2521.817 2886.871 8.517331e+02 test 7832763
## 2094 2521.817 2886.871 1.552545e+03 test 7832763
## 2095 2521.817 2886.871 1.788428e+03 test 7832763
## 2096 2521.817 2886.871 7.097270e+02 test 7832763
## 2097 2521.817 2886.871 1.678220e+03 test 7832763
## 2098 2521.817 2886.871 1.220474e+03 test 7832763
## 2099 2521.817 2886.871 1.789070e+03 test 7832763
## 2100 2521.817 2886.871 7.987120e+02 test 7832763
## 2101 2521.817 2886.871 9.536121e+02 test 7832763
## 2102 2521.817 2886.871 1.795765e+03 test 7832763
## 2103 2521.817 2886.871 6.375252e+02 test 7832763
## 2104 2521.817 2886.871 5.163129e+02 test 7832763
## 2105 2521.817 2886.871 1.425719e+03 test 7832763
## 2106 2521.817 2886.871 4.496018e+02 test 7832763
## 2107 2521.817 2886.871 1.114356e+03 test 7832763
## 2108 2521.817 2886.871 1.562911e+03 test 7832763
## 2109 2521.817 2886.871 6.521628e+02 test 7832763
## 2110 2521.817 2886.871 1.796104e+03 test 7832763
## 2111 2521.817 2886.871 1.100085e+03 test 7832763
## 2112 2521.817 2886.871 6.996691e+02 test 7832763
## 2113 2521.817 2886.871 5.379245e+02 test 7832763
## 2114 2521.817 2886.871 6.876994e+02 test 7832763
## 2115 2521.817 2886.871 1.626568e+03 test 7832763
## 2116 2521.817 2886.871 1.594403e+03 test 7832763
## 2117 2521.817 2886.871 1.223916e+03 test 7832763
## 2118 2521.817 2886.871 1.657271e+03 test 7832763
## 2119 2521.817 2886.871 9.952798e+02 test 7832763
## 2120 2521.817 2886.871 1.611792e+03 test 7832763
## 2121 2521.817 2886.871 1.628787e+03 test 7832763
## 2122 2521.817 2886.871 1.558054e+03 test 7832763
## 2123 2521.817 2886.871 9.455078e+02 test 7832763
## 2124 2521.817 2886.871 7.404332e+02 test 7832763
## 2125 2521.817 2886.871 1.148132e+03 test 7832763
## 2126 2521.817 2886.871 1.190752e+03 test 7832763
## 2127 2521.817 2886.871 1.451193e+03 test 7832763
## 2128 2521.817 2886.871 1.110092e+03 test 7832763
## 2129 2521.817 2886.871 9.390130e+02 test 7832763
## 2130 2521.817 2886.871 1.584089e+03 test 7832763
## 2131 2521.817 2886.871 9.865896e+02 test 7832763
## 2132 2521.817 2886.871 1.050030e+03 test 7832763
## 2133 2521.817 2886.871 7.665462e+02 test 7832763
## 2134 2521.817 2886.871 1.099130e+03 test 7832763
## 2135 2521.817 2886.871 1.875271e+03 test 7832763
## 2136 2521.817 2886.871 2.003697e+03 test 7832763
## 2137 2521.817 2886.871 5.801049e+02 test 7832763
## 2138 2521.817 2886.871 1.079793e+03 test 7832763
## 2139 2521.817 2886.871 1.440639e+03 test 7832763
## 2140 2521.817 2886.871 5.641059e+02 test 7832763
## 2141 2521.817 2886.871 9.812732e+02 test 7832763
## 2142 2521.817 2886.871 1.509131e+03 test 7832763
## 2143 2521.817 2886.871 6.680294e+02 test 7832763
## 2144 2521.817 2886.871 9.762929e+02 test 7832763
## 2145 2521.817 2886.871 8.011064e+02 test 7832763
## 2146 2521.817 2886.871 1.002744e+03 test 7832763
## 2147 2521.817 2886.871 8.245333e+02 test 7832763
## 2148 2521.817 2886.871 1.422417e+03 test 7832763
## 2149 2521.817 2886.871 1.726988e+03 test 7832763
## 2150 2521.817 2886.871 7.367754e+02 test 7832763
## 2151 2521.817 2886.871 1.156827e+03 test 7832763
## 2152 2521.817 2886.871 1.410457e+03 test 7832763
## 2153 2521.817 2886.871 2.054135e+03 test 7832763
## 2154 2521.817 2886.871 2.184474e+03 test 7832763
## 2155 2521.817 2886.871 4.671916e+02 test 7832763
## 2156 2521.817 2886.871 1.714152e+03 test 7832763
## 2157 2521.817 2886.871 6.808206e+02 test 7832763
## 2158 2521.817 2886.871 1.172060e+03 test 7832763
## 2159 2521.817 2886.871 1.172364e+03 test 7832763
## 2160 2521.817 2886.871 2.970143e+03 test 7832763
## 2161 2521.817 2886.871 2.315041e+03 test 7832763
## 2162 2521.817 2886.871 1.734317e+03 test 7832763
## 2163 2521.817 2886.871 1.162959e+03 test 7832763
## 2164 2521.817 2886.871 1.798343e+03 test 7832763
## 2165 2521.817 2886.871 7.806836e+02 test 7832763
## 2166 2521.817 2886.871 7.813432e+02 test 7832763
## 2167 2521.817 2886.871 8.278079e+02 test 7832763
## 2168 2521.817 2886.871 1.086215e+03 test 7832763
## 2169 2521.817 2886.871 6.193112e+02 test 7832763
## 2170 2521.817 2886.871 1.183577e+03 test 7832763
## 2171 2521.817 2886.871 1.198341e+03 test 7832763
## 2172 2521.817 2886.871 7.049984e+02 test 7832763
## 2173 2521.817 2886.871 8.678441e+02 test 7832763
## 2174 2521.817 2886.871 1.621237e+03 test 7832763
## 2175 2521.817 2886.871 1.051418e+03 test 7832763
## 2176 2521.817 2886.871 1.079464e+03 test 7832763
## 2177 2521.817 2886.871 6.561385e+02 test 7832763
## 2178 2521.817 2886.871 1.221856e+03 test 7832763
## 2179 2521.817 2886.871 1.215104e+03 test 7832763
## 2180 2521.817 2886.871 1.694062e+03 test 7832763
## 2181 2521.817 2886.871 1.336729e+03 test 7832763
## 2182 2521.817 2886.871 1.329576e+03 test 7832763
## 2183 2521.817 2886.871 5.544506e+02 test 7832763
## 2184 2521.817 2886.871 1.033761e+03 test 7832763
## 2185 2521.817 2886.871 1.078502e+03 test 7832763
## 2186 2521.817 2886.871 1.226429e+03 test 7832763
## 2187 2521.817 2886.871 6.540432e+02 test 7832763
## 2188 2521.817 2886.871 1.057198e+03 test 7832763
## 2189 2521.817 2886.871 1.289894e+03 test 7832763
## 2190 2521.817 2886.871 1.434363e+03 test 7832763
## 2191 2521.817 2886.871 1.046261e+03 test 7832763
## 2192 2521.817 2886.871 1.773249e+03 test 7832763
## 2193 2521.817 2886.871 1.709298e+03 test 7832763
## 2194 2521.817 2886.871 7.295061e+02 test 7832763
## 2195 2521.817 2886.871 1.792247e+03 test 7832763
## 2196 2521.817 2886.871 8.580382e+02 test 7832763
## 2197 2521.817 2886.871 1.114009e+03 test 7832763
## 2198 2521.817 2886.871 8.420974e+02 test 7832763
## 2199 2521.817 2886.871 1.478562e+03 test 7832763
## 2200 2521.817 2886.871 1.009876e+03 test 7832763
## 2201 2521.817 2886.871 1.190539e+03 test 7832763
## 2202 2521.817 2886.871 6.838936e+02 test 7832763
## 2203 2521.817 2886.871 1.150339e+03 test 7832763
## 2204 2521.817 2886.871 9.839508e+02 test 7832763
## 2205 2521.817 2886.871 1.077488e+03 test 7832763
## 2206 2521.817 2886.871 6.829856e+02 test 7832763
## 2207 2521.817 2886.871 9.034455e+02 test 7832763
## 2208 2521.817 2886.871 1.238034e+03 test 7832763
## 2209 2521.817 2886.871 9.932934e+02 test 7832763
## 2210 2521.817 2886.871 1.067445e+03 test 7832763
## 2211 2521.817 2886.871 1.065697e+03 test 7832763
## 2212 2521.817 2886.871 8.413835e+02 test 7832763
## 2213 2521.817 2886.871 9.480443e+02 test 7832763
## 2214 2521.817 2886.871 7.041834e+02 test 7832763
## 2215 2521.817 2886.871 1.199478e+03 test 7832763
## 2216 2521.817 2886.871 8.081376e+02 test 7832763
## 2217 2521.817 2886.871 4.898054e+02 test 7832763
## 2218 2521.817 2886.871 1.030599e+03 test 7832763
## 2219 2521.817 2886.871 1.204030e+03 test 7832763
## 2220 2521.817 2886.871 8.972750e+02 test 7832763
## 2221 2521.817 2886.871 9.017176e+02 test 7832763
## 2222 2521.817 2886.871 8.180232e+02 test 7832763
## 2223 2521.817 2886.871 1.216862e+03 test 7832763
## 2224 2521.817 2886.871 1.131529e+03 test 7832763
## 2225 2521.817 2886.871 1.843369e+03 test 7832763
## 2226 2521.817 2886.871 9.688008e+02 test 7832763
## 2227 2521.817 2886.871 8.055551e+02 test 7832763
## 2228 2521.817 2886.871 9.497220e+02 test 7832763
## 2229 2521.817 2886.871 6.537386e+02 test 7832763
## 2230 2521.817 2886.871 9.046804e+02 test 7832763
## 2231 2521.817 2886.871 1.898730e+03 test 7832763
## 2232 2521.817 2886.871 6.261928e+02 test 7832763
## 2233 2521.817 2886.871 1.079230e+03 test 7832763
## 2234 2521.817 2886.871 1.829150e+03 test 7832763
## 2235 2521.817 2886.871 1.059487e+03 test 7832763
## 2236 2521.817 2886.871 1.272972e+03 test 7832763
## 2237 2521.817 2886.871 1.056701e+03 test 7832763
## 2238 2521.817 2886.871 5.600183e+02 test 7832763
## 2239 2521.817 2886.871 1.086208e+03 test 7832763
## 2240 2521.817 2886.871 1.342701e+03 test 7832763
## 2241 2521.817 2886.871 1.530276e+03 test 7832763
## 2242 2521.817 2886.871 1.063951e+03 test 7832763
## 2243 2521.817 2886.871 8.607595e+02 test 7832763
## 2244 2521.817 2886.871 9.462569e+02 test 7832763
## 2245 2521.817 2886.871 7.642838e+02 test 7832763
## 2246 2521.817 2886.871 2.353633e+03 test 7832763
## 2247 2521.817 2886.871 2.040291e+03 test 7832763
## 2248 2521.817 2886.871 1.226968e+03 test 7832763
## 2249 2521.817 2886.871 1.422637e+03 test 7832763
## 2250 2521.817 2886.871 1.217891e+03 test 7832763
## 2251 2521.817 2886.871 1.262810e+03 test 7832763
## 2252 2521.817 2886.871 7.884466e+02 test 7832763
## 2253 2521.817 2886.871 7.653821e+02 test 7832763
## 2254 2521.817 2886.871 6.622136e+02 test 7832763
## 2255 2521.817 2886.871 1.142080e+03 test 7832763
## 2256 2521.817 2886.871 1.066052e+03 test 7832763
## 2257 2521.817 2886.871 7.255523e+02 test 7832763
## 2258 2521.817 2886.871 9.560377e+02 test 7832763
## 2259 2521.817 2886.871 7.365640e+02 test 7832763
## 2260 2521.817 2886.871 9.817097e+02 test 7832763
## 2261 2521.817 2886.871 9.792178e+02 test 7832763
## 2262 2521.817 2886.871 6.038239e+02 test 7832763
## 2263 2521.817 2886.871 5.546121e+02 test 7832763
## 2264 2521.817 2886.871 9.051427e+02 test 7832763
## 2265 2521.817 2886.871 1.690705e+03 test 7832763
## 2266 2521.817 2886.871 1.018934e+03 test 7832763
## 2267 2521.817 2886.871 7.033073e+02 test 7832763
## 2268 2521.817 2886.871 1.158167e+03 test 7832763
## 2269 2521.817 2886.871 5.854545e+02 test 7832763
## 2270 2521.817 2886.871 9.364731e+02 test 7832763
## 2271 2521.817 2886.871 9.146781e+02 test 7832763
## 2272 2521.817 2886.871 1.101846e+03 test 7832763
## 2273 2521.817 2886.871 8.131936e+02 test 7832763
## 2274 2521.817 2886.871 6.902847e+02 test 7832763
## 2275 2521.817 2886.871 9.347356e+02 test 7832763
## 2276 2521.817 2886.871 1.349772e+03 test 7832763
## 2277 2521.817 2886.871 6.725198e+02 test 7832763
## 2278 2521.817 2886.871 1.296884e+03 test 7832763
## 2279 2521.817 2886.871 9.042283e+02 test 7832763
## 2280 2521.817 2886.871 9.277413e+02 test 7832763
## 2281 2521.817 2886.871 1.748440e+03 test 7832763
## 2282 2521.817 2886.871 6.493379e+02 test 7832763
## 2283 2521.817 2886.871 6.143032e+02 test 7832763
## 2284 2521.817 2886.871 1.204186e+03 test 7832763
## 2285 2521.817 2886.871 1.166700e+03 test 7832763
## 2286 2521.817 2886.871 1.106834e+03 test 7832763
## 2287 2521.817 2886.871 1.249682e+03 test 7832763
## 2288 2521.817 2886.871 8.615999e+02 test 7832763
## 2289 2521.817 2886.871 1.128928e+03 test 7832763
## 2290 2521.817 2886.871 1.331936e+03 test 7832763
## 2291 2521.817 2886.871 7.791676e+02 test 7832763
## 2292 2521.817 2886.871 1.219784e+03 test 7832763
## 2293 2521.817 2886.871 5.826566e+02 test 7832763
## 2294 2521.817 2886.871 1.449060e+03 test 7832763
## 2295 2521.817 2886.871 7.442088e+02 test 7832763
## 2296 2521.817 2886.871 8.700919e+02 test 7832763
## 2297 2521.817 2886.871 7.130807e+02 test 7832763
## 2298 2521.817 2886.871 8.813859e+02 test 7832763
## 2299 2521.817 2886.871 1.221577e+03 test 7832763
## 2300 2521.817 2886.871 8.934841e+02 test 7832763
## 2301 2521.817 2886.871 1.132583e+03 test 7832763
## 2302 2521.817 2886.871 1.293897e+03 test 7832763
## 2303 2521.817 2886.871 1.165829e+03 test 7832763
## 2304 2521.817 2886.871 7.089855e+02 test 7832763
## 2305 2521.817 2886.871 8.055427e+02 test 7832763
## 2306 2521.817 2886.871 1.129045e+03 test 7832763
## 2307 2521.817 2886.871 9.433017e+02 test 7832763
## 2308 2521.817 2886.871 2.033318e+03 test 7832763
## 2309 2521.817 2886.871 1.724428e+03 test 7832763
## 2310 2521.817 2886.871 9.547102e+02 test 7832763
## 2311 2521.817 2886.871 7.396488e+02 test 7832763
## 2312 2521.817 2886.871 9.170553e+02 test 7832763
## 2313 2521.817 2886.871 9.691487e+02 test 7832763
## 2314 2521.817 2886.871 5.928909e+02 test 7832763
## 2315 2521.817 2886.871 5.790468e+02 test 7832763
## 2316 2521.817 2886.871 9.326179e+02 test 7832763
## 2317 2521.817 2886.871 5.770973e+02 test 7832763
## 2318 2521.817 2886.871 2.050703e+03 test 7832763
## 2319 2521.817 2886.871 9.376628e+02 test 7832763
## 2320 2521.817 2886.871 9.920157e+02 test 7832763
## 2321 2521.817 2886.871 9.260818e+02 test 7832763
## 2322 2521.817 2886.871 9.912869e+02 test 7832763
## 2323 2521.817 2886.871 7.300702e+02 test 7832763
## 2324 2521.817 2886.871 8.019330e+02 test 7832763
## 2325 2521.817 2886.871 1.256502e+03 test 7832763
## 2326 2521.817 2886.871 1.631299e+03 test 7832763
## 2327 2521.817 2886.871 1.084306e+03 test 7832763
## 2328 2521.817 2886.871 8.747719e+02 test 7832763
## 2329 2521.817 2886.871 1.262451e+03 test 7832763
## 2330 2521.817 2886.871 1.237765e+03 test 7832763
## 2331 2521.817 2886.871 1.273702e+03 test 7832763
## 2332 2521.817 2886.871 7.915619e+02 test 7832763
## 2333 2521.817 2886.871 6.939784e+02 test 7832763
## 2334 2521.817 2886.871 6.157882e+02 test 7832763
## 2335 2521.817 2886.871 7.135979e+02 test 7832763
## 2336 2521.817 2886.871 8.518728e+02 test 7832763
## 2337 2521.817 2886.871 8.993671e+02 test 7832763
## 2338 2521.817 2886.871 1.478994e+03 test 7832763
## 2339 2521.817 2886.871 1.254792e+03 test 7832763
## 2340 2521.817 2886.871 1.055071e+03 test 7832763
## 2341 2521.817 2886.871 1.302208e+03 test 7832763
## 2342 2521.817 2886.871 1.187160e+03 test 7832763
## 2343 2521.817 2886.871 1.236082e+03 test 7832763
## 2344 2521.817 2886.871 7.528453e+02 test 7832763
## 2345 2521.817 2886.871 1.199576e+03 test 7832763
## 2346 2521.817 2886.871 6.895379e+02 test 7832763
## 2347 2521.817 2886.871 1.082490e+03 test 7832763
## 2348 2521.817 2886.871 8.738341e+02 test 7832763
## 2349 2521.817 2886.871 7.103679e+02 test 7832763
## 2350 2521.817 2886.871 1.313416e+03 test 7832763
## 2351 2521.817 2886.871 1.054348e+03 test 7832763
## 2352 2521.817 2886.871 9.103635e+02 test 7832763
## 2353 2521.817 2886.871 1.034089e+03 test 7832763
## 2354 2521.817 2886.871 9.360497e+02 test 7832763
## 2355 2521.817 2886.871 1.336171e+03 test 7832763
## 2356 2521.817 2886.871 8.252293e+02 test 7832763
## 2357 2521.817 2886.871 6.929909e+02 test 7832763
## 2358 2521.817 2886.871 6.766993e+02 test 7832763
## 2359 2521.817 2886.871 9.556839e+02 test 7832763
## 2360 2521.817 2886.871 9.267294e+02 test 7832763
## 2361 2521.817 2886.871 1.148864e+03 test 7832763
## 2362 2521.817 2886.871 1.271508e+03 test 7832763
## 2363 2521.817 2886.871 6.433872e+02 test 7832763
## 2364 2521.817 2886.871 1.154713e+03 test 7832763
## 2365 2521.817 2886.871 7.904969e+02 test 7832763
## 2366 2521.817 2886.871 8.579445e+02 test 7832763
## 2367 2521.817 2886.871 7.814196e+02 test 7832763
## 2368 2521.817 2886.871 8.610265e+02 test 7832763
## 2369 2521.817 2886.871 8.004453e+02 test 7832763
## 2370 2521.817 2886.871 7.346866e+02 test 7832763
## 2371 2521.817 2886.871 1.454985e+03 test 7832763
## 2372 2521.817 2886.871 1.977947e+03 test 7832763
## 2373 2521.817 2886.871 8.686053e+02 test 7832763
## 2374 2521.817 2886.871 6.649057e+02 test 7832763
## 2375 2521.817 2886.871 9.499697e+02 test 7832763
## 2376 2521.817 2886.871 9.542099e+02 test 7832763
## 2377 2521.817 2886.871 8.875394e+02 test 7832763
## 2378 2521.817 2886.871 6.328494e+02 test 7832763
## 2379 2521.817 2886.871 1.127497e+03 test 7832763
## 2380 2521.817 2886.871 1.194425e+03 test 7832763
## 2381 2521.817 2886.871 1.509134e+03 test 7832763
## 2382 2521.817 2886.871 8.509536e+02 test 7832763
## 2383 2521.817 2886.871 5.218171e+02 test 7832763
## 2384 2521.817 2886.871 7.085924e+02 test 7832763
## 2385 2521.817 2886.871 1.225039e+03 test 7832763
## 2386 2521.817 2886.871 9.843447e+02 test 7832763
## 2387 2521.817 2886.871 9.676277e+02 test 7832763
## 2388 2521.817 2886.871 9.021213e+02 test 7832763
## 2389 2521.817 2886.871 1.089143e+03 test 7832763
## 2390 2521.817 2886.871 6.728378e+02 test 7832763
## 2391 2521.817 2886.871 1.345162e+03 test 7832763
## 2392 2521.817 2886.871 1.397491e+03 test 7832763
## 2393 2521.817 2886.871 1.316499e+03 test 7832763
## 2394 2521.817 2886.871 1.277266e+03 test 7832763
## 2395 2521.817 2886.871 8.926333e+02 test 7832763
## 2396 2521.817 2886.871 1.192237e+03 test 7832763
## 2397 2521.817 2886.871 1.178061e+03 test 7832763
## 2398 2521.817 2886.871 7.884912e+02 test 7832763
## 2399 2521.817 2886.871 9.410173e+02 test 7832763
## 2400 2521.817 2886.871 9.314666e+02 test 7832763
## 2401 2521.817 2886.871 8.614377e+02 test 7832763
## 2402 2521.817 2886.871 9.363785e+02 test 7832763
## 2403 2521.817 2886.871 1.272060e+03 test 7832763
## 2404 2521.817 2886.871 1.049824e+03 test 7832763
## 2405 2521.817 2886.871 1.326981e+03 test 7832763
## 2406 2521.817 2886.871 1.083306e+03 test 7832763
## 2407 2521.817 2886.871 1.115032e+03 test 7832763
## 2408 2521.817 2886.871 5.966286e+02 test 7832763
## 2409 2521.817 2886.871 1.335720e+03 test 7832763
## 2410 2521.817 2886.871 1.921086e+03 test 7832763
## 2411 2521.817 2886.871 1.059285e+03 test 7832763
## 2412 2521.817 2886.871 9.413071e+02 test 7832763
## 2413 2521.817 2886.871 1.294055e+03 test 7832763
## 2414 2521.817 2886.871 7.882305e+02 test 7832763
## 2415 2521.817 2886.871 1.074046e+03 test 7832763
## 2416 2521.817 2886.871 1.258788e+03 test 7832763
## 2417 2521.817 2886.871 1.184689e+03 test 7832763
## 2418 2521.817 2886.871 9.393537e+02 test 7832763
## 2419 2521.817 2886.871 9.976651e+02 test 7832763
## 2420 2521.817 2886.871 9.650437e+02 test 7832763
## 2421 2521.817 2886.871 4.763314e+02 test 7832763
## 2422 2521.817 2886.871 1.316380e+03 test 7832763
## 2423 2521.817 2886.871 1.079499e+03 test 7832763
## 2424 2521.817 2886.871 1.285106e+03 test 7832763
## 2425 2521.817 2886.871 9.376405e+02 test 7832763
## 2426 2521.817 2886.871 1.037224e+03 test 7832763
## 2427 2521.817 2886.871 1.111230e+03 test 7832763
## 2428 2521.817 2886.871 1.437675e+03 test 7832763
## 2429 2521.817 2886.871 9.468123e+02 test 7832763
## 2430 2521.817 2886.871 1.524084e+03 test 7832763
## 2431 2521.817 2886.871 1.232384e+03 test 7832763
## 2432 2521.817 2886.871 8.587789e+02 test 7832763
## 2433 2521.817 2886.871 1.098422e+03 test 7832763
## 2434 2521.817 2886.871 1.071610e+03 test 7832763
## 2435 2521.817 2886.871 1.218443e+03 test 7832763
## 2436 2521.817 2886.871 1.125008e+03 test 7832763
## 2437 2521.817 2886.871 9.656080e+02 test 7832763
## 2438 2521.817 2886.871 1.231883e+03 test 7832763
## 2439 2521.817 2886.871 1.423628e+03 test 7832763
## 2440 2521.817 2886.871 1.244650e+03 test 7832763
## 2441 2521.817 2886.871 1.239105e+03 test 7832763
## 2442 2521.817 2886.871 1.074908e+03 test 7832763
## 2443 2521.817 2886.871 9.533887e+02 test 7832763
## 2444 2521.817 2886.871 1.246265e+03 test 7832763
## 2445 2521.817 2886.871 1.315071e+03 test 7832763
## 2446 2521.817 2886.871 1.178118e+03 test 7832763
## 2447 2521.817 2886.871 8.814640e+02 test 7832763
## 2448 2521.817 2886.871 1.233570e+03 test 7832763
## 2449 2521.817 2886.871 7.802051e+02 test 7832763
## 2450 2521.817 2886.871 9.155330e+02 test 7832763
## 2451 2521.817 2886.871 1.422009e+03 test 7832763
## 2452 2521.817 2886.871 1.653035e+03 test 7832763
## 2453 2521.817 2886.871 7.606259e+02 test 7832763
## 2454 2521.817 2886.871 8.065972e+02 test 7832763
## 2455 2521.817 2886.871 1.232124e+03 test 7832763
## 2456 2521.817 2886.871 1.200784e+03 test 7832763
## 2457 2521.817 2886.871 1.411655e+03 test 7832763
## 2458 2521.817 2886.871 1.179355e+03 test 7832763
## 2459 2521.817 2886.871 1.327836e+03 test 7832763
## 2460 2521.817 2886.871 9.749537e+02 test 7832763
## 2461 2521.817 2886.871 8.213807e+02 test 7832763
## 2462 2521.817 2886.871 1.358715e+03 test 7832763
## 2463 2521.817 2886.871 1.038842e+03 test 7832763
## 2464 2521.817 2886.871 1.642004e+03 test 7832763
## 2465 2521.817 2886.871 1.398314e+03 test 7832763
## 2466 2521.817 2886.871 1.057480e+03 test 7832763
## 2467 2521.817 2886.871 7.350934e+02 test 7832763
## 2468 2521.817 2886.871 8.708890e+02 test 7832763
## 2469 2521.817 2886.871 1.195414e+03 test 7832763
## 2470 2521.817 2886.871 1.618881e+03 test 7832763
## 2471 2521.817 2886.871 1.034606e+03 test 7832763
## 2472 2521.817 2886.871 1.178823e+03 test 7832763
## 2473 2521.817 2886.871 1.058981e+03 test 7832763
## 2474 2521.817 2886.871 1.988411e+03 test 7832763
## 2475 2521.817 2886.871 1.158255e+03 test 7832763
## 2476 2521.817 2886.871 1.213681e+03 test 7832763
## 2477 2521.817 2886.871 7.837652e+02 test 7832763
## 2478 2521.817 2886.871 9.150867e+02 test 7832763
## 2479 2521.817 2886.871 6.003065e+02 test 7832763
## 2480 2521.817 2886.871 1.260089e+03 test 7832763
## 2481 2521.817 2886.871 1.440771e+03 test 7832763
## 2482 2521.817 2886.871 1.301782e+03 test 7832763
## 2483 2521.817 2886.871 1.243028e+03 test 7832763
## 2484 2521.817 2886.871 1.089390e+03 test 7832763
## 2485 2521.817 2886.871 8.253177e+02 test 7832763
## 2486 2521.817 2886.871 9.192392e+02 test 7832763
## 2487 2521.817 2886.871 1.639772e+03 test 7832763
## 2488 2521.817 2886.871 1.492203e+03 test 7832763
## 2489 2521.817 2886.871 1.232150e+03 test 7832763
## 2490 2521.817 2886.871 1.256203e+03 test 7832763
## 2491 2521.817 2886.871 1.073682e+03 test 7832763
## 2492 2521.817 2886.871 6.530000e+02 test 7832763
## 2493 2521.817 2886.871 8.052703e+02 test 7832763
## 2494 2521.817 2886.871 1.132564e+03 test 7832763
## 2495 2521.817 2886.871 1.889543e+03 test 7832763
## 2496 2521.817 2886.871 1.246320e+03 test 7832763
## 2497 2521.817 2886.871 9.414909e+02 test 7832763
## 2498 2521.817 2886.871 1.286335e+03 test 7832763
## 2499 2521.817 2886.871 8.493390e+02 test 7832763
## 2500 2521.817 2886.871 8.192896e+02 test 7832763
## 2501 2521.817 2886.871 1.394181e+03 test 7832763
## 2502 2521.817 2886.871 1.316405e+03 test 7832763
## 2503 2521.817 2886.871 1.112509e+03 test 7832763
## 2504 2521.817 2886.871 1.079018e+03 test 7832763
## 2505 2521.817 2886.871 1.400561e+03 test 7832763
## 2506 2521.817 2886.871 9.997522e+02 test 7832763
## 2507 2521.817 2886.871 9.220471e+02 test 7832763
## 2508 2521.817 2886.871 1.526842e+03 test 7832763
## 2509 2521.817 2886.871 1.204766e+03 test 7832763
## 2510 2521.817 2886.871 8.511709e+02 test 7832763
## 2511 2521.817 2886.871 1.438315e+03 test 7832763
## 2512 2521.817 2886.871 1.851779e+03 test 7832763
## 2513 2521.817 2886.871 1.510960e+03 test 7832763
## 2514 2521.817 2886.871 1.103206e+03 test 7832763
## 2515 2521.817 2886.871 8.711593e+02 test 7832763
## 2516 2521.817 2886.871 1.159386e+03 test 7832763
## 2517 2521.817 2886.871 9.153893e+02 test 7832763
## 2518 2521.817 2886.871 1.243675e+03 test 7832763
## 2519 2521.817 2886.871 8.707682e+02 test 7832763
## 2520 2521.817 2886.871 1.146359e+03 test 7832763
## 2521 2521.817 2886.871 1.333138e+03 test 7832763
## 2522 2521.817 2886.871 1.721337e+03 test 7832763
## 2523 2521.817 2886.871 6.163267e+02 test 7832763
## 2524 2521.817 2886.871 1.272462e+03 test 7832763
## 2525 2521.817 2886.871 1.414212e+03 test 7832763
## 2526 2521.817 2886.871 1.123122e+03 test 7832763
## 2527 2521.817 2886.871 1.296008e+03 test 7832763
## 2528 2521.817 2886.871 1.358666e+03 test 7832763
## 2529 2521.817 2886.871 8.464313e+02 test 7832763
## 2530 2521.817 2886.871 1.264832e+03 test 7832763
## 2531 2521.817 2886.871 7.811221e+02 test 7832763
## 2532 2521.817 2886.871 1.277892e+03 test 7832763
## 2533 2521.817 2886.871 8.497008e+02 test 7832763
## 2534 2521.817 2886.871 9.586076e+02 test 7832763
## 2535 2521.817 2886.871 1.320536e+03 test 7832763
## 2536 2521.817 2886.871 1.281973e+03 test 7832763
## 2537 2521.817 2886.871 7.184931e+02 test 7832763
## 2538 2521.817 2886.871 1.392534e+03 test 7832763
## 2539 2521.817 2886.871 1.105190e+03 test 7832763
## 2540 2521.817 2886.871 1.099772e+03 test 7832763
## 2541 2521.817 2886.871 1.512715e+03 test 7832763
## 2542 2521.817 2886.871 9.495178e+02 test 7832763
## 2543 2521.817 2886.871 1.084682e+03 test 7832763
## 2544 2521.817 2886.871 8.256618e+02 test 7832763
## 2545 2521.817 2886.871 1.721897e+03 test 7832763
## 2546 2521.817 2886.871 1.231699e+03 test 7832763
## 2547 2521.817 2886.871 1.537254e+03 test 7832763
## 2548 2521.817 2886.871 2.048546e+03 test 7832763
## 2549 2521.817 2886.871 1.127637e+03 test 7832763
## 2550 2521.817 2886.871 1.698418e+03 test 7832763
## 2551 2521.817 2886.871 1.233304e+03 test 7832763
## 2552 2521.817 2886.871 8.561886e+02 test 7832763
## 2553 2521.817 2886.871 1.016771e+03 test 7832763
## 2554 2521.817 2886.871 1.049880e+03 test 7832763
## 2555 2521.817 2886.871 2.108444e+03 test 7832763
## 2556 2521.817 2886.871 2.825596e+03 test 7832763
## 2557 2521.817 2886.871 1.340877e+03 test 7832763
## 2558 2521.817 2886.871 8.205161e+02 test 7832763
## 2559 2521.817 2886.871 1.664025e+03 test 7832763
## 2560 2521.817 2886.871 9.731353e+02 test 7832763
## 2561 2521.817 2886.871 1.337541e+03 test 7832763
## 2562 2521.817 2886.871 1.157317e+03 test 7832763
## 2563 2521.817 2886.871 1.188868e+03 test 7832763
## 2564 2521.817 2886.871 1.869753e+03 test 7832763
## 2565 2521.817 2886.871 1.223072e+03 test 7832763
## 2566 2521.817 2886.871 6.374257e+02 test 7832763
## 2567 2521.817 2886.871 9.300589e+02 test 7832763
## 2568 2521.817 2886.871 1.468852e+03 test 7832763
## 2569 2521.817 2886.871 1.362744e+03 test 7832763
## 2570 2521.817 2886.871 1.008153e+03 test 7832763
## 2571 2521.817 2886.871 1.428575e+03 test 7832763
## 2572 2521.817 2886.871 9.279851e+02 test 7832763
## 2573 2521.817 2886.871 1.312643e+03 test 7832763
## 2574 2521.817 2886.871 8.389264e+02 test 7832763
## 2575 2521.817 2886.871 1.502722e+03 test 7832763
## 2576 2521.817 2886.871 1.797474e+03 test 7832763
## 2577 2521.817 2886.871 1.972312e+03 test 7832763
## 2578 2521.817 2886.871 1.008887e+03 test 7832763
## 2579 2521.817 2886.871 9.170619e+02 test 7832763
## 2580 2521.817 2886.871 9.689098e+02 test 7832763
## 2581 2521.817 2886.871 1.674484e+03 test 7832763
## 2582 2521.817 2886.871 9.827100e+02 test 7832763
## 2583 2521.817 2886.871 1.320864e+03 test 7832763
## 2584 2521.817 2886.871 1.509995e+03 test 7832763
## 2585 2521.817 2886.871 2.859440e+03 test 7832763
## 2586 2521.817 2886.871 2.409119e+03 test 7832763
## 2587 2521.817 2886.871 1.795096e+03 test 7832763
## 2588 2521.817 2886.871 1.431532e+03 test 7832763
## 2589 2521.817 2886.871 1.007062e+03 test 7832763
## 2590 2521.817 2886.871 1.902369e+03 test 7832763
## 2591 2521.817 2886.871 9.799796e+02 test 7832763
## 2592 2521.817 2886.871 2.144440e+03 test 7832763
## 2593 2521.817 2886.871 6.717121e+02 test 7832763
## 2594 2521.817 2886.871 1.172554e+03 test 7832763
## 2595 2521.817 2886.871 1.687374e+03 test 7832763
## 2596 2521.817 2886.871 1.148086e+03 test 7832763
## 2597 2521.817 2886.871 2.005432e+03 test 7832763
## 2598 2521.817 2886.871 2.144997e+03 test 7832763
## 2599 2521.817 2886.871 1.273021e+03 test 7832763
## 2600 2521.817 2886.871 3.176259e+03 test 7832763
## 2601 2521.817 2886.871 1.219123e+03 test 7832763
## 2602 2521.817 2886.871 9.639880e+02 test 7832763
## 2603 2521.817 2886.871 1.495938e+03 test 7832763
## 2604 2521.817 2886.871 1.717984e+03 test 7832763
## 2605 2521.817 2886.871 1.266081e+03 test 7832763
## 2606 2521.817 2886.871 1.867935e+03 test 7832763
## 2607 2521.817 2886.871 1.359061e+03 test 7832763
## 2608 2521.817 2886.871 2.224709e+03 test 7832763
## 2609 2521.817 2886.871 1.315352e+03 test 7832763
## 2610 2521.817 2886.871 8.181664e+02 test 7832763
## 2611 2521.817 2886.871 1.101462e+03 test 7832763
## 2612 2521.817 2886.871 7.912301e+02 test 7832763
## 2613 2521.817 2886.871 1.179033e+03 test 7832763
## 2614 2521.817 2886.871 9.707420e+02 test 7832763
## 2615 2521.817 2886.871 1.178837e+03 test 7832763
## 2616 2521.817 2886.871 1.516235e+03 test 7832763
## 2617 2521.817 2886.871 1.248233e+03 test 7832763
## 2618 2521.817 2886.871 2.314561e+03 test 7832763
## 2619 2521.817 2886.871 1.558158e+03 test 7832763
## 2620 2521.817 2886.871 1.063490e+03 test 7832763
## 2621 2521.817 2886.871 1.132583e+03 test 7832763
## 2622 2521.817 2886.871 1.491823e+03 test 7832763
## 2623 2521.817 2886.871 2.258766e+03 test 7832763
## 2624 2521.817 2886.871 2.249285e+03 test 7832763
## 2625 2521.817 2886.871 1.020570e+03 test 7832763
## 2626 2521.817 2886.871 1.353247e+03 test 7832763
## 2627 2521.817 2886.871 4.250135e+02 test 7832763
## 2628 2521.817 2886.871 1.819767e+03 test 7832763
## 2629 2521.817 2886.871 1.403638e+03 test 7832763
## 2630 2521.817 2886.871 2.446136e+03 test 7832763
## 2631 2521.817 2886.871 1.039916e+03 test 7832763
## 2632 2521.817 2886.871 8.115432e+02 test 7832763
## 2633 2521.817 2886.871 3.751393e+03 test 7832763
## 2634 2521.817 2886.871 2.398196e+03 test 7832763
## 2635 2521.817 2886.871 1.748685e+03 test 7832763
## 2636 2521.817 2886.871 7.854861e+02 test 7832763
## 2637 2521.817 2886.871 1.789115e+03 test 7832763
## 2638 2521.817 2886.871 1.721651e+03 test 7832763
## 2639 2521.817 2886.871 1.797796e+03 test 7832763
## 2640 2521.817 2886.871 1.838653e+03 test 7832763
## 2641 2521.817 2886.871 1.483186e+03 test 7832763
## 2642 2521.817 2886.871 1.682134e+03 test 7832763
## 2643 2521.817 2886.871 1.776962e+03 test 7832763
## 2644 2521.817 2886.871 2.123820e+03 test 7832763
## 2645 2521.817 2886.871 1.051183e+03 test 7832763
## 2646 2521.817 2886.871 2.552907e+03 test 7832763
## 2647 2521.817 2886.871 2.226303e+03 test 7832763
## 2648 2521.817 2886.871 1.011210e+03 test 7832763
## 2649 2521.817 2886.871 1.467129e+03 test 7832763
## 2650 2521.817 2886.871 1.710279e+03 test 7832763
## 2651 2521.817 2886.871 9.397915e+02 test 7832763
## 2652 2521.817 2886.871 1.161398e+03 test 7832763
## 2653 2521.817 2886.871 1.583767e+03 test 7832763
## 2654 2521.817 2886.871 1.696429e+03 test 7832763
## 2655 2521.817 2886.871 9.108257e+02 test 7832763
## 2656 2521.817 2886.871 1.152634e+03 test 7832763
## 2657 2521.817 2886.871 1.576153e+03 test 7832763
## 2658 2521.817 2886.871 2.645537e+03 test 7832763
## 2659 2521.817 2886.871 2.872084e+03 test 7832763
## 2660 2521.817 2886.871 1.729740e+03 test 7832763
## 2661 2521.817 2886.871 1.317855e+03 test 7832763
## 2662 2521.817 2886.871 1.234918e+03 test 7832763
## 2663 2521.817 2886.871 2.358470e+03 test 7832763
## 2664 2521.817 2886.871 4.129335e+02 test 7832763
## 2665 2521.817 2886.871 1.058604e+03 test 7832763
## 2666 2521.817 2886.871 1.642177e+03 test 7832763
## 2667 2521.817 2886.871 1.734500e+03 test 7832763
## 2668 2521.817 2886.871 1.601349e+03 test 7832763
## 2669 2521.817 2886.871 1.509043e+03 test 7832763
## 2670 2521.817 2886.871 2.525910e+03 test 7832763
## 2671 2521.817 2886.871 1.866941e+03 test 7832763
## 2672 2521.817 2886.871 1.229012e+03 test 7832763
## 2673 2521.817 2886.871 1.644142e+03 test 7832763
## 2674 2521.817 2886.871 1.462352e+03 test 7832763
## 2675 2521.817 2886.871 6.098397e+02 test 7832763
## 2676 2521.817 2886.871 1.474788e+03 test 7832763
## 2677 2521.817 2886.871 2.413965e+03 test 7832763
## 2678 2521.817 2886.871 2.209404e+03 test 7832763
## 2679 2521.817 2886.871 1.408445e+03 test 7832763
## 2680 2521.817 2886.871 6.871122e+02 test 7832763
## 2681 2521.817 2886.871 2.174543e+03 test 7832763
## 2682 2521.817 2886.871 1.832340e+03 test 7832763
## 2683 2521.817 2886.871 2.296978e+03 test 7832763
## 2684 2521.817 2886.871 1.388459e+03 test 7832763
## 2685 2521.817 2886.871 2.284693e+02 test 7832763
## 2686 2521.817 2886.871 2.239518e+03 test 7832763
## 2687 2521.817 2886.871 1.308323e+03 test 7832763
## 2688 2521.817 2886.871 2.433571e+03 test 7832763
## 2689 2521.817 2886.871 1.749626e+03 test 7832763
## 2690 2521.817 2886.871 1.663748e+03 test 7832763
## 2691 2521.817 2886.871 2.173777e+03 test 7832763
## 2692 2521.817 2886.871 1.158329e+03 test 7832763
## 2693 2521.817 2886.871 1.496033e+03 test 7832763
## 2694 2521.817 2886.871 1.911834e+03 test 7832763
## 2695 2521.817 2886.871 2.568707e+03 test 7832763
## 2696 2521.817 2886.871 6.659770e+02 test 7832763
## 2697 2521.817 2886.871 3.013782e+03 test 7832763
## 2698 2521.817 2886.871 2.171354e+03 test 7832763
## 2699 2521.817 2886.871 1.360953e+03 test 7832763
## 2700 2521.817 2886.871 8.322982e+02 test 7832763
## 2701 2521.817 2886.871 2.294012e+03 test 7832763
## 2702 2521.817 2886.871 1.803572e+03 test 7832763
## 2703 2521.817 2886.871 2.617010e+03 test 7832763
## 2704 2521.817 2886.871 1.974406e+03 test 7832763
## 2705 2521.817 2886.871 1.471724e+03 test 7832763
## 2706 2521.817 2886.871 2.399411e+03 test 7832763
## 2707 2521.817 2886.871 2.014472e+03 test 7832763
## 2708 2521.817 2886.871 1.319689e+03 test 7832763
## 2709 2521.817 2886.871 2.128541e+03 test 7832763
## 2710 2521.817 2886.871 6.759586e+02 test 7832763
## 2711 2521.817 2886.871 1.395569e+03 test 7832763
## 2712 2521.817 2886.871 1.102224e+03 test 7832763
## 2713 2521.817 2886.871 1.415044e+03 test 7832763
## 2714 2521.817 2886.871 3.556929e+02 test 7832763
## 2715 2521.817 2886.871 1.370419e+03 test 7832763
## 2716 2521.817 2886.871 1.928970e+03 test 7832763
## 2717 2521.817 2886.871 1.104039e+03 test 7832763
## 2718 2521.817 2886.871 1.803177e+03 test 7832763
## 2719 2521.817 2886.871 1.135677e+03 test 7832763
## 2720 2521.817 2886.871 1.735183e+03 test 7832763
## 2721 2521.817 2886.871 2.573650e+03 test 7832763
## 2722 2521.817 2886.871 7.435152e+02 test 7832763
## 2723 2521.817 2886.871 1.450635e+03 test 7832763
## 2724 2521.817 2886.871 1.578393e+03 test 7832763
## 2725 2521.817 2886.871 3.222075e+03 test 7832763
## 2726 2521.817 2886.871 2.770637e+03 test 7832763
## 2727 2521.817 2886.871 2.058014e+03 test 7832763
## 2728 2521.817 2886.871 1.477193e+03 test 7832763
## 2729 2521.817 2886.871 1.476801e+03 test 7832763
## 2730 2521.817 2886.871 2.116946e+03 test 7832763
## 2731 2521.817 2886.871 1.793299e+03 test 7832763
## 2732 2521.817 2886.871 1.938660e+03 test 7832763
## 2733 2521.817 2886.871 8.986598e+02 test 7832763
## 2734 2521.817 2886.871 1.013477e+03 test 7832763
## 2735 2521.817 2886.871 1.279789e+03 test 7832763
## 2736 2521.817 2886.871 1.826400e+03 test 7832763
## 2737 2521.817 2886.871 7.897261e+02 test 7832763
## 2738 2521.817 2886.871 1.419967e+03 test 7832763
## 2739 2521.817 2886.871 2.859352e+03 test 7832763
## 2740 2521.817 2886.871 4.202235e+02 test 7832763
## 2741 2521.817 2886.871 1.241235e+03 test 7832763
## 2742 2521.817 2886.871 1.052330e+03 test 7832763
## 2743 2521.817 2886.871 2.587403e+03 test 7832763
## 2744 2521.817 2886.871 1.413403e+03 test 7832763
## 2745 2521.817 2886.871 8.843409e+02 test 7832763
## 2746 2521.817 2886.871 1.486357e+03 test 7832763
## 2747 2521.817 2886.871 1.952033e+03 test 7832763
## 2748 2521.817 2886.871 1.056666e+03 test 7832763
## 2749 2521.817 2886.871 1.178562e+03 test 7832763
## 2750 2521.817 2886.871 1.334603e+03 test 7832763
## 2751 2521.817 2886.871 8.097318e+02 test 7832763
## 2752 2521.817 2886.871 1.739618e+03 test 7832763
## 2753 2521.817 2886.871 1.160486e+03 test 7832763
## 2754 2521.817 2886.871 1.817371e+03 test 7832763
## 2755 2521.817 2886.871 2.706645e+03 test 7832763
## 2756 2521.817 2886.871 2.374522e+03 test 7832763
## 2757 2521.817 2886.871 2.475100e+03 test 7832763
## 2758 2521.817 2886.871 4.605062e+03 test 7832763
## 2759 2521.817 2886.871 3.445999e+03 test 7832763
## 2760 2521.817 2886.871 5.171458e+03 test 7832763
## 2761 2521.817 2886.871 1.133344e+03 test 7832763
## 2762 2521.817 2886.871 1.209547e+03 test 7832763
## 2763 2521.817 2886.871 1.241034e+03 test 7832763
## 2764 2521.817 2886.871 1.437849e+03 test 7832763
## 2765 2521.817 2886.871 2.244837e+03 test 7832763
## 2766 2521.817 2886.871 9.174706e+02 test 7832763
## 2767 2521.817 2886.871 9.417431e+02 test 7832763
## 2768 2521.817 2886.871 1.090142e+03 test 7832763
## 2769 2521.817 2886.871 1.567810e+03 test 7832763
## 2770 2521.817 2886.871 1.657695e+03 test 7832763
## 2771 2521.817 2886.871 2.116745e+03 test 7832763
## 2772 2521.817 2886.871 1.435473e+03 test 7832763
## 2773 2521.817 2886.871 1.397640e+03 test 7832763
## 2774 2521.817 2886.871 2.523086e+03 test 7832763
## 2775 2521.817 2886.871 2.886437e+03 test 7832763
## 2776 2521.817 2886.871 9.765260e+02 test 7832763
## 2777 2521.817 2886.871 7.091427e+02 test 7832763
## 2778 2521.817 2886.871 1.562613e+03 test 7832763
## 2779 2521.817 2886.871 1.158499e+03 test 7832763
## 2780 2521.817 2886.871 1.138630e+03 test 7832763
## 2781 2521.817 2886.871 1.265520e+03 test 7832763
## 2782 2521.817 2886.871 1.634409e+03 test 7832763
## 2783 2521.817 2886.871 2.340949e+03 test 7832763
## 2784 2521.817 2886.871 2.266999e+03 test 7832763
## 2785 2521.817 2886.871 2.616832e+03 test 7832763
## 2786 2521.817 2886.871 7.860946e+02 test 7832763
## 2787 2521.817 2886.871 1.120551e+03 test 7832763
## 2788 2521.817 2886.871 1.342937e+03 test 7832763
## 2789 2521.817 2886.871 1.994201e+03 test 7832763
## 2790 2521.817 2886.871 9.076475e+02 test 7832763
## 2791 2521.817 2886.871 6.138632e+02 test 7832763
## 2792 2521.817 2886.871 6.508041e+02 test 7832763
## 2793 2521.817 2886.871 1.899763e+03 test 7832763
## 2794 2521.817 2886.871 1.211104e+03 test 7832763
## 2795 2521.817 2886.871 1.189937e+03 test 7832763
## 2796 2521.817 2886.871 3.945181e+02 test 7832763
## 2797 2521.817 2886.871 7.085987e+02 test 7832763
## 2798 2521.817 2886.871 1.120559e+03 test 7832763
## 2799 2521.817 2886.871 2.825971e+03 test 7832763
## 2800 2521.817 2886.871 1.284519e+03 test 7832763
## 2801 2521.817 2886.871 1.650497e+03 test 7832763
## 2802 2521.817 2886.871 1.786514e+03 test 7832763
## 2803 2521.817 2886.871 1.722522e+03 test 7832763
## 2804 2521.817 2886.871 1.050768e+03 test 7832763
## 2805 2521.817 2886.871 7.702715e+02 test 7832763
## 2806 2521.817 2886.871 9.547203e+02 test 7832763
## 2807 2521.817 2886.871 1.097588e+03 test 7832763
## 2808 2521.817 2886.871 2.292424e+03 test 7832763
## 2809 2521.817 2886.871 7.006795e+02 test 7832763
## 2810 2521.817 2886.871 1.539517e+03 test 7832763
## 2811 2521.817 2886.871 1.373030e+03 test 7832763
## 2812 2521.817 2886.871 1.492856e+03 test 7832763
## 2813 2521.817 2886.871 8.441355e+02 test 7832763
## 2814 2521.817 2886.871 1.198041e+03 test 7832763
## 2815 2521.817 2886.871 1.172640e+03 test 7832763
## 2816 2521.817 2886.871 2.858633e+03 test 7832763
## 2817 2521.817 2886.871 1.050275e+03 test 7832763
## 2818 2521.817 2886.871 9.288683e+02 test 7832763
## 2819 2521.817 2886.871 1.712557e+03 test 7832763
## 2820 2521.817 2886.871 1.430078e+03 test 7832763
## 2821 2521.817 2886.871 1.074243e+03 test 7832763
## 2822 2521.817 2886.871 9.026525e+02 test 7832763
## 2823 2521.817 2886.871 1.233757e+03 test 7832763
## 2824 2521.817 2886.871 3.844373e+03 test 7832763
## 2825 2521.817 2886.871 8.599524e+02 test 7832763
## 2826 2521.817 2886.871 2.164140e+03 test 7832763
## 2827 2521.817 2886.871 1.211376e+03 test 7832763
## 2828 2521.817 2886.871 1.505787e+03 test 7832763
## 2829 2521.817 2886.871 1.903833e+03 test 7832763
## 2830 2521.817 2886.871 1.077919e+03 test 7832763
## 2831 2521.817 2886.871 1.383507e+03 test 7832763
## 2832 2521.817 2886.871 1.024812e+03 test 7832763
## 2833 2521.817 2886.871 8.874070e+02 test 7832763
## 2834 2521.817 2886.871 1.426000e+03 test 7832763
## 2835 2521.817 2886.871 9.131185e+02 test 7832763
## 2836 2521.817 2886.871 1.669832e+03 test 7832763
## 2837 2521.817 2886.871 9.412607e+02 test 7832763
## 2838 2521.817 2886.871 2.747853e+03 test 7832763
## 2839 2521.817 2886.871 1.333267e+03 test 7832763
## 2840 2521.817 2886.871 8.706736e+02 test 7832763
## 2841 2521.817 2886.871 1.391483e+03 test 7832763
## 2842 2521.817 2886.871 1.547114e+03 test 7832763
## 2843 2521.817 2886.871 5.273115e+03 test 7832763
## 2844 2521.817 2886.871 8.016817e+02 test 7832763
## 2845 2521.817 2886.871 2.118300e+03 test 7832763
## 2846 2521.817 2886.871 5.847405e+02 test 7832763
## 2847 2521.817 2886.871 3.363623e+03 test 7832763
## 2848 2521.817 2886.871 2.250509e+03 test 7832763
## 2849 2521.817 2886.871 2.153454e+02 test 7832763
## 2850 2521.817 2886.871 9.497854e+02 test 7832763
## 2851 2521.817 2886.871 7.025125e+02 test 7832763
## 2852 2521.817 2886.871 1.490729e+03 test 7832763
## 2853 2521.817 2886.871 1.134131e+03 test 7832763
## 2854 2521.817 2886.871 1.077451e+03 test 7832763
## 2855 2521.817 2886.871 2.181816e+03 test 7832763
## 2856 2521.817 2886.871 2.046729e+03 test 7832763
## 2857 2521.817 2886.871 1.130179e+03 test 7832763
## 2858 2521.817 2886.871 1.253909e+03 test 7832763
## 2859 2521.817 2886.871 1.454063e+03 test 7832763
## 2860 2521.817 2886.871 5.257809e+02 test 7832763
## 2861 2521.817 2886.871 1.021293e+03 test 7832763
## 2862 2521.817 2886.871 1.629104e+03 test 7832763
## 2863 2521.817 2886.871 3.203915e+02 test 7832763
## 2864 2521.817 2886.871 3.216012e+02 test 7832763
## 2865 2521.817 2886.871 8.330756e+02 test 7832763
## 2866 2521.817 2886.871 2.265186e+02 test 7832763
## 2867 2521.817 2886.871 7.121354e+02 test 7832763
## 2868 2521.817 2886.871 6.184427e+03 test 7832763
## 2869 2521.817 2886.871 1.818084e+03 test 7832763
## 2870 2521.817 2886.871 1.618277e+03 test 7832763
## 2871 2521.817 2886.871 2.158323e+03 test 7832763
## 2872 2521.817 2886.871 1.751768e+03 test 7832763
## 2873 2521.817 2886.871 8.141923e+02 test 7832763
## 2874 2521.817 2886.871 2.681304e+03 test 7832763
## 2875 2521.817 2886.871 4.454180e+02 test 7832763
## 2876 2521.817 2886.871 1.304664e+03 test 7832763
## 2877 2521.817 2886.871 8.073957e+02 test 7832763
## 2878 2521.817 2886.871 2.224033e+02 test 7832763
## 2879 2521.817 2886.871 1.048828e+03 test 7832763
## 2880 2521.817 2886.871 1.274241e+03 test 7832763
## 2881 2521.817 2886.871 6.438034e+02 test 7832763
## 2882 2521.817 2886.871 1.830337e+03 test 7832763
## 2883 2521.817 2886.871 1.243036e+03 test 7832763
## 2884 2521.817 2886.871 1.004295e+03 test 7832763
## 2885 2521.817 2886.871 2.027957e+03 test 7832763
## 2886 2521.817 2886.871 1.503652e+03 test 7832763
## 2887 2521.817 2886.871 4.278741e+02 test 7832763
## 2888 2521.817 2886.871 4.400014e+02 test 7832763
## 2889 2521.817 2886.871 8.053691e+01 test 7832763
## 2890 2521.817 2886.871 1.510261e+03 test 7832763
## 2891 2521.817 2886.871 2.067140e+02 test 7832763
## 2892 2521.817 2886.871 5.287939e+02 test 7832763
## 2893 2521.817 2886.871 7.279650e+02 test 7832763
## 2894 2521.817 2886.871 6.774663e+02 test 7832763
## 2895 2521.817 2886.871 1.529484e+03 test 7832763
## 2896 2521.817 2886.871 1.930635e+03 test 7832763
## 2897 2521.817 2886.871 3.869297e+03 test 7832763
## 2898 2521.817 2886.871 1.508908e+03 test 7832763
## 2899 2521.817 2886.871 1.919056e+03 test 7832763
## 2900 2521.817 2886.871 8.278664e+02 test 7832763
## 2901 2521.817 2886.871 3.540216e+02 test 7832763
## 2902 2521.817 2886.871 9.632771e+02 test 7832763
## 2903 2521.817 2886.871 9.707839e+02 test 7832763
## 2904 2521.817 2886.871 2.028810e+03 test 7832763
## 2905 2521.817 2886.871 1.306873e+03 test 7832763
## 2906 2521.817 2886.871 3.242251e+02 test 7832763
## 2907 2521.817 2886.871 5.038812e+02 test 7832763
## 2908 2521.817 2886.871 9.893745e+02 test 7832763
## 2909 2521.817 2886.871 1.342120e+03 test 7832763
## 2910 2521.817 2886.871 5.393344e+02 test 7832763
## 2911 2521.817 2886.871 1.567516e+03 test 7832763
## 2912 2521.817 2886.871 1.754093e+03 test 7832763
## 2913 2521.817 2886.871 1.434464e+03 test 7832763
## 2914 2521.817 2886.871 1.920388e+03 test 7832763
## 2915 2521.817 2886.871 6.997570e+02 test 7832763
## 2916 2521.817 2886.871 1.553422e+03 test 7832763
## 2917 2521.817 2886.871 2.293412e+03 test 7832763
## 2918 2521.817 2886.871 9.264995e+02 test 7832763
## 2919 2521.817 2886.871 1.294479e+03 test 7832763
## 2920 2521.817 2886.871 5.793772e+02 test 7832763
## 2921 2521.817 2886.871 1.411027e+03 test 7832763
## 2922 2521.817 2886.871 6.505929e+02 test 7832763
## 2923 2521.817 2886.871 8.520048e+02 test 7832763
## 2924 2521.817 2886.871 2.021645e+03 test 7832763
## 2925 2521.817 2886.871 6.225349e+02 test 7832763
## 2926 2521.817 2886.871 1.444085e+03 test 7832763
## 2927 2521.817 2886.871 8.214618e+02 test 7832763
## 2928 2521.817 2886.871 1.817860e+03 test 7832763
## 2929 2521.817 2886.871 1.402338e+03 test 7832763
## 2930 2521.817 2886.871 4.138261e+03 test 7832763
## 2931 2521.817 2886.871 2.623821e+03 test 7832763
## 2932 2521.817 2886.871 2.777905e+03 test 7832763
## 2933 2521.817 2886.871 4.411673e+02 test 7832763
## 2934 2521.817 2886.871 1.528350e+03 test 7832763
## 2935 2521.817 2886.871 1.418819e+03 test 7832763
## 2936 2521.817 2886.871 3.188428e+03 test 7832763
## 2937 2521.817 2886.871 1.287409e+03 test 7832763
## 2938 2521.817 2886.871 1.752279e+03 test 7832763
## 2939 2521.817 2886.871 6.174215e+02 test 7832763
## 2940 2521.817 2886.871 8.115356e+02 test 7832763
## 2941 2521.817 2886.871 1.132805e+03 test 7832763
## 2942 2521.817 2886.871 1.319876e+03 test 7832763
## 2943 2521.817 2886.871 1.657361e+03 test 7832763
## 2944 2521.817 2886.871 5.948498e+02 test 7832763
## 2945 2521.817 2886.871 1.019559e+03 test 7832763
## 2946 2521.817 2886.871 5.754008e+02 test 7832763
## 2947 2521.817 2886.871 7.637597e+02 test 7832763
## 2948 2521.817 2886.871 4.780753e+02 test 7832763
## 2949 2521.817 2886.871 7.139362e+02 test 7832763
## 2950 2521.817 2886.871 1.988668e+03 test 7832763
## 2951 2521.817 2886.871 1.265315e+03 test 7832763
## 2952 2521.817 2886.871 1.458557e+03 test 7832763
## 2953 2521.817 2886.871 2.621054e+02 test 7832763
## 2954 2521.817 2886.871 2.008542e+03 test 7832763
## 2955 2521.817 2886.871 1.413550e+03 test 7832763
## 2956 2521.817 2886.871 1.361086e+03 test 7832763
## 2957 2521.817 2886.871 7.206080e+02 test 7832763
## 2958 2521.817 2886.871 1.624178e+03 test 7832763
## 2959 2521.817 2886.871 4.316268e+02 test 7832763
## 2960 2521.817 2886.871 1.053467e+03 test 7832763
## 2961 2521.817 2886.871 3.561433e+02 test 7832763
## 2962 2521.817 2886.871 5.340782e+02 test 7832763
## 2963 2521.817 2886.871 5.915368e+02 test 7832763
## 2964 2521.817 2886.871 1.353458e+03 test 7832763
## 2965 2521.817 2886.871 1.227277e+03 test 7832763
## 2966 2521.817 2886.871 1.673057e+03 test 7832763
## 2967 2521.817 2886.871 1.674349e+03 test 7832763
## 2968 2521.817 2886.871 1.065649e+03 test 7832763
## 2969 2521.817 2886.871 1.251967e+03 test 7832763
## 2970 2521.817 2886.871 1.157899e+03 test 7832763
## 2971 2521.817 2886.871 4.156515e+02 test 7832763
## 2972 2521.817 2886.871 2.344397e-05 test 7832763
## 2973 2521.817 2886.871 8.695308e+02 test 7832763
## 2974 2521.817 2886.871 1.640937e+03 test 7832763
## 2975 2521.817 2886.871 2.486165e+02 test 7832763
## 2976 2521.817 2886.871 3.374667e+02 test 7832763
## 2977 2521.817 2886.871 1.401366e+03 test 7832763
## 2978 2521.817 2886.871 4.848568e+03 test 7832763
## 2979 2521.817 2886.871 2.859961e+03 test 7832763
## 2980 2521.817 2886.871 1.680492e+03 test 7832763
## 2981 2521.817 2886.871 7.692806e+02 test 7832763
## 2982 2521.817 2886.871 2.081685e+03 test 7832763
## 2983 2521.817 2886.871 8.626821e+02 test 7832763
## 2984 2521.817 2886.871 3.886070e+03 test 7832763
## 2985 2521.817 2886.871 1.459292e+03 test 7832763
## 2986 2521.817 2886.871 2.087942e+02 test 7832763
## 2987 2521.817 2886.871 2.255027e+03 test 7832763
## 2988 2521.817 2886.871 1.159482e+03 test 7832763
## 2989 2521.817 2886.871 9.154571e+02 test 7832763
## 2990 2521.817 2886.871 1.211841e+03 test 7832763
## 2991 2521.817 2886.871 3.498968e+03 test 7832763
## 2992 2521.817 2886.871 1.113086e+03 test 7832763
## 2993 2521.817 2886.871 7.172075e+02 test 7832763
## 2994 2521.817 2886.871 1.797850e+03 test 7832763
## 2995 2521.817 2886.871 7.028056e+02 test 7832763
## 2996 2521.817 2886.871 2.004806e+03 test 7832763
## 2997 2521.817 2886.871 8.063632e+02 test 7832763
## 2998 2521.817 2886.871 6.164407e+02 test 7832763
## 2999 2521.817 2886.871 9.751832e+02 test 7832763
## 3000 2521.817 2886.871 9.488100e+02 test 7832763
## 3001 2521.817 2886.871 1.366544e+03 test 7832763
## 3002 2521.817 2886.871 2.285367e+03 test 7832763
## 3003 2521.817 2886.871 1.900067e+03 test 7832763
## 3004 2521.817 2886.871 4.457977e+02 test 7832763
## 3005 2521.817 2886.871 7.362294e+02 test 7832763
## 3006 2521.817 2886.871 9.530373e+02 test 7832763
## 3007 2521.817 2886.871 7.324546e+03 test 7832763
## 3008 2521.817 2886.871 2.621781e+03 test 7832763
## 3009 2521.817 2886.871 1.938146e+03 test 7832763
## 3010 2521.817 2886.871 2.794072e+03 test 7832763
## 3011 2521.817 2886.871 1.397546e+03 test 7832763
## 3012 2521.817 2886.871 1.419175e+03 test 7832763
## 3013 2521.817 2886.871 9.202187e+02 test 7832763
## 3014 2521.817 2886.871 1.132559e+03 test 7832763
## 3015 2521.817 2886.871 1.303778e+03 test 7832763
## 3016 2521.817 2886.871 1.999928e+03 test 7832763
## 3017 2521.817 2886.871 1.947550e+03 test 7832763
## 3018 2521.817 2886.871 7.675309e+02 test 7832763
## 3019 2521.817 2886.871 3.884190e+02 test 7832763
## 3020 2521.817 2886.871 1.891092e+03 test 7832763
## 3021 2521.817 2886.871 1.334785e+03 test 7832763
## 3022 2521.817 2886.871 1.820605e+03 test 7832763
## 3023 2521.817 2886.871 2.116341e+03 test 7832763
## 3024 2521.817 2886.871 1.250989e+03 test 7832763
## 3025 2521.817 2886.871 1.795081e+03 test 7832763
## 3026 2521.817 2886.871 1.962969e+03 test 7832763
## 3027 2521.817 2886.871 7.387787e+02 test 7832763
## 3028 2521.817 2886.871 7.794007e+02 test 7832763
## 3029 2521.817 2886.871 1.832560e+03 test 7832763
## 3030 2521.817 2886.871 6.541765e+02 test 7832763
## 3031 2521.817 2886.871 7.647523e+02 test 7832763
## 3032 2521.817 2886.871 2.024168e+03 test 7832763
## 3033 2521.817 2886.871 4.377526e+02 test 7832763
## 3034 2521.817 2886.871 4.040571e+02 test 7832763
## 3035 2521.817 2886.871 1.288688e+03 test 7832763
## 3036 2521.817 2886.871 1.427383e+02 test 7832763
## 3037 2521.817 2886.871 2.235707e+02 test 7832763
## 3038 2521.817 2886.871 3.327526e+02 test 7832763
## 3039 2521.817 2886.871 2.105621e+03 test 7832763
## 3040 2521.817 2886.871 1.614336e+03 test 7832763
## 3041 2521.817 2886.871 4.749726e+02 test 7832763
## 3042 2521.817 2886.871 1.437114e+03 test 7832763
## 3043 2521.817 2886.871 7.308313e+02 test 7832763
## 3044 2521.817 2886.871 1.659343e+03 test 7832763
## 3045 2521.817 2886.871 2.295355e+03 test 7832763
## 3046 2521.817 2886.871 2.037184e+03 test 7832763
## 3047 2521.817 2886.871 1.856393e+02 test 7832763
## 3048 2521.817 2886.871 2.941282e+02 test 7832763
## 3049 2521.817 2886.871 1.440205e+03 test 7832763
## 3050 2521.817 2886.871 2.215711e+03 test 7832763
## 3051 2521.817 2886.871 5.486970e+02 test 7832763
## 3052 2521.817 2886.871 1.648116e+03 test 7832763
## 3053 2521.817 2886.871 9.455658e+02 test 7832763
## 3054 2521.817 2886.871 1.383819e+03 test 7832763
## 3055 2521.817 2886.871 2.315173e+03 test 7832763
## 3056 2521.817 2886.871 3.535587e+02 test 7832763
## 3057 2521.817 2886.871 2.300589e+03 test 7832763
## 3058 2521.817 2886.871 1.456419e+03 test 7832763
## 3059 2521.817 2886.871 2.145906e+03 test 7832763
## 3060 2521.817 2886.871 1.904611e+03 test 7832763
## 3061 2521.817 2886.871 2.184725e+03 test 7832763
## 3062 2521.817 2886.871 6.258196e+03 test 7832763
## 3063 2521.817 2886.871 1.529158e+03 test 7832763
## 3064 2521.817 2886.871 2.044076e+03 test 7832763
## 3065 2521.817 2886.871 2.326568e+03 test 7832763
## 3066 2521.817 2886.871 3.146047e+03 test 7832763
## 3067 2521.817 2886.871 1.297134e+03 test 7832763
## 3068 2521.817 2886.871 2.067634e+03 test 7832763
## 3069 2521.817 2886.871 1.609465e+03 test 7832763
## 3070 2521.817 2886.871 2.905023e+03 test 7832763
## 3071 2521.817 2886.871 1.391596e+03 test 7832763
## 3072 2521.817 2886.871 3.780885e+03 test 7832763
## 3073 2521.817 2886.871 1.529292e+03 test 7832763
## 3074 2521.817 2886.871 1.432603e+03 test 7832763
## 3075 2521.817 2886.871 1.871316e+03 test 7832763
## 3076 2521.817 2886.871 1.487473e+03 test 7832763
## 3077 2521.817 2886.871 3.107850e+02 test 7832763
## 3078 2521.817 2886.871 3.570803e+03 test 7832763
## 3079 2521.817 2886.871 1.849513e+03 test 7832763
## 3080 2521.817 2886.871 2.248463e+03 test 7832763
## 3081 2521.817 2886.871 1.807375e+03 test 7832763
## 3082 2521.817 2886.871 1.940200e+03 test 7832763
## 3083 2521.817 2886.871 3.384355e+03 test 7832763
## 3084 2521.817 2886.871 1.688901e+03 test 7832763
## 3085 2521.817 2886.871 7.952507e+02 test 7832763
## 3086 2521.817 2886.871 1.319932e+03 test 7832763
## 3087 2521.817 2886.871 2.180515e+03 test 7832763
## 3088 2521.817 2886.871 8.414889e+02 test 7832763
## 3089 2521.817 2886.871 1.376850e+03 test 7832763
## 3090 2521.817 2886.871 2.421452e+03 test 7832763
## 3091 2521.817 2886.871 4.791351e+02 test 7832763
## 3092 2521.817 2886.871 6.861684e+02 test 7832763
## 3093 2521.817 2886.871 3.565078e+03 test 7832763
## 3094 2521.817 2886.871 1.074941e+03 test 7832763
## 3095 2521.817 2886.871 2.175317e+03 test 7832763
## 3096 2521.817 2886.871 9.997017e+02 test 7832763
## 3097 2521.817 2886.871 1.382405e+03 test 7832763
## 3098 2521.817 2886.871 1.385862e+03 test 7832763
## 3099 2521.817 2886.871 4.170765e+02 test 7832763
## 3100 2521.817 2886.871 9.380577e+03 test 7832763
## 3101 2521.817 2886.871 1.412003e+03 test 7832763
## 3102 2521.817 2886.871 4.417478e+03 test 7832763
## 3103 2521.817 2886.871 7.580958e+03 test 7832763
## 3104 2521.817 2886.871 9.570826e+03 test 7832763
## 3105 2521.817 2886.871 2.155381e+03 test 7832763
## 3106 2521.817 2886.871 5.351778e+03 test 7832763
get_df(sq_grid, "Square")
## mean sd area text count
## 1 3819.376 1.453724e-11 3819.376 Square 8563041
## 2 3819.376 1.453724e-11 3819.376 Square 8563041
## 3 3819.376 1.453724e-11 3819.376 Square 8563041
## 4 3819.376 1.453724e-11 3819.376 Square 8563041
## 5 3819.376 1.453724e-11 3819.376 Square 8563041
## 6 3819.376 1.453724e-11 3819.376 Square 8563041
## 7 3819.376 1.453724e-11 3819.376 Square 8563041
## 8 3819.376 1.453724e-11 3819.376 Square 8563041
## 9 3819.376 1.453724e-11 3819.376 Square 8563041
## 10 3819.376 1.453724e-11 3819.376 Square 8563041
## 11 3819.376 1.453724e-11 3819.376 Square 8563041
## 12 3819.376 1.453724e-11 3819.376 Square 8563041
## 13 3819.376 1.453724e-11 3819.376 Square 8563041
## 14 3819.376 1.453724e-11 3819.376 Square 8563041
## 15 3819.376 1.453724e-11 3819.376 Square 8563041
## 16 3819.376 1.453724e-11 3819.376 Square 8563041
## 17 3819.376 1.453724e-11 3819.376 Square 8563041
## 18 3819.376 1.453724e-11 3819.376 Square 8563041
## 19 3819.376 1.453724e-11 3819.376 Square 8563041
## 20 3819.376 1.453724e-11 3819.376 Square 8563041
## 21 3819.376 1.453724e-11 3819.376 Square 8563041
## 22 3819.376 1.453724e-11 3819.376 Square 8563041
## 23 3819.376 1.453724e-11 3819.376 Square 8563041
## 24 3819.376 1.453724e-11 3819.376 Square 8563041
## 25 3819.376 1.453724e-11 3819.376 Square 8563041
## 26 3819.376 1.453724e-11 3819.376 Square 8563041
## 27 3819.376 1.453724e-11 3819.376 Square 8563041
## 28 3819.376 1.453724e-11 3819.376 Square 8563041
## 29 3819.376 1.453724e-11 3819.376 Square 8563041
## 30 3819.376 1.453724e-11 3819.376 Square 8563041
## 31 3819.376 1.453724e-11 3819.376 Square 8563041
## 32 3819.376 1.453724e-11 3819.376 Square 8563041
## 33 3819.376 1.453724e-11 3819.376 Square 8563041
## 34 3819.376 1.453724e-11 3819.376 Square 8563041
## 35 3819.376 1.453724e-11 3819.376 Square 8563041
## 36 3819.376 1.453724e-11 3819.376 Square 8563041
## 37 3819.376 1.453724e-11 3819.376 Square 8563041
## 38 3819.376 1.453724e-11 3819.376 Square 8563041
## 39 3819.376 1.453724e-11 3819.376 Square 8563041
## 40 3819.376 1.453724e-11 3819.376 Square 8563041
## 41 3819.376 1.453724e-11 3819.376 Square 8563041
## 42 3819.376 1.453724e-11 3819.376 Square 8563041
## 43 3819.376 1.453724e-11 3819.376 Square 8563041
## 44 3819.376 1.453724e-11 3819.376 Square 8563041
## 45 3819.376 1.453724e-11 3819.376 Square 8563041
## 46 3819.376 1.453724e-11 3819.376 Square 8563041
## 47 3819.376 1.453724e-11 3819.376 Square 8563041
## 48 3819.376 1.453724e-11 3819.376 Square 8563041
## 49 3819.376 1.453724e-11 3819.376 Square 8563041
## 50 3819.376 1.453724e-11 3819.376 Square 8563041
## 51 3819.376 1.453724e-11 3819.376 Square 8563041
## 52 3819.376 1.453724e-11 3819.376 Square 8563041
## 53 3819.376 1.453724e-11 3819.376 Square 8563041
## 54 3819.376 1.453724e-11 3819.376 Square 8563041
## 55 3819.376 1.453724e-11 3819.376 Square 8563041
## 56 3819.376 1.453724e-11 3819.376 Square 8563041
## 57 3819.376 1.453724e-11 3819.376 Square 8563041
## 58 3819.376 1.453724e-11 3819.376 Square 8563041
## 59 3819.376 1.453724e-11 3819.376 Square 8563041
## 60 3819.376 1.453724e-11 3819.376 Square 8563041
## 61 3819.376 1.453724e-11 3819.376 Square 8563041
## 62 3819.376 1.453724e-11 3819.376 Square 8563041
## 63 3819.376 1.453724e-11 3819.376 Square 8563041
## 64 3819.376 1.453724e-11 3819.376 Square 8563041
## 65 3819.376 1.453724e-11 3819.376 Square 8563041
## 66 3819.376 1.453724e-11 3819.376 Square 8563041
## 67 3819.376 1.453724e-11 3819.376 Square 8563041
## 68 3819.376 1.453724e-11 3819.376 Square 8563041
## 69 3819.376 1.453724e-11 3819.376 Square 8563041
## 70 3819.376 1.453724e-11 3819.376 Square 8563041
## 71 3819.376 1.453724e-11 3819.376 Square 8563041
## 72 3819.376 1.453724e-11 3819.376 Square 8563041
## 73 3819.376 1.453724e-11 3819.376 Square 8563041
## 74 3819.376 1.453724e-11 3819.376 Square 8563041
## 75 3819.376 1.453724e-11 3819.376 Square 8563041
## 76 3819.376 1.453724e-11 3819.376 Square 8563041
## 77 3819.376 1.453724e-11 3819.376 Square 8563041
## 78 3819.376 1.453724e-11 3819.376 Square 8563041
## 79 3819.376 1.453724e-11 3819.376 Square 8563041
## 80 3819.376 1.453724e-11 3819.376 Square 8563041
## 81 3819.376 1.453724e-11 3819.376 Square 8563041
## 82 3819.376 1.453724e-11 3819.376 Square 8563041
## 83 3819.376 1.453724e-11 3819.376 Square 8563041
## 84 3819.376 1.453724e-11 3819.376 Square 8563041
## 85 3819.376 1.453724e-11 3819.376 Square 8563041
## 86 3819.376 1.453724e-11 3819.376 Square 8563041
## 87 3819.376 1.453724e-11 3819.376 Square 8563041
## 88 3819.376 1.453724e-11 3819.376 Square 8563041
## 89 3819.376 1.453724e-11 3819.376 Square 8563041
## 90 3819.376 1.453724e-11 3819.376 Square 8563041
## 91 3819.376 1.453724e-11 3819.376 Square 8563041
## 92 3819.376 1.453724e-11 3819.376 Square 8563041
## 93 3819.376 1.453724e-11 3819.376 Square 8563041
## 94 3819.376 1.453724e-11 3819.376 Square 8563041
## 95 3819.376 1.453724e-11 3819.376 Square 8563041
## 96 3819.376 1.453724e-11 3819.376 Square 8563041
## 97 3819.376 1.453724e-11 3819.376 Square 8563041
## 98 3819.376 1.453724e-11 3819.376 Square 8563041
## 99 3819.376 1.453724e-11 3819.376 Square 8563041
## 100 3819.376 1.453724e-11 3819.376 Square 8563041
## 101 3819.376 1.453724e-11 3819.376 Square 8563041
## 102 3819.376 1.453724e-11 3819.376 Square 8563041
## 103 3819.376 1.453724e-11 3819.376 Square 8563041
## 104 3819.376 1.453724e-11 3819.376 Square 8563041
## 105 3819.376 1.453724e-11 3819.376 Square 8563041
## 106 3819.376 1.453724e-11 3819.376 Square 8563041
## 107 3819.376 1.453724e-11 3819.376 Square 8563041
## 108 3819.376 1.453724e-11 3819.376 Square 8563041
## 109 3819.376 1.453724e-11 3819.376 Square 8563041
## 110 3819.376 1.453724e-11 3819.376 Square 8563041
## 111 3819.376 1.453724e-11 3819.376 Square 8563041
## 112 3819.376 1.453724e-11 3819.376 Square 8563041
## 113 3819.376 1.453724e-11 3819.376 Square 8563041
## 114 3819.376 1.453724e-11 3819.376 Square 8563041
## 115 3819.376 1.453724e-11 3819.376 Square 8563041
## 116 3819.376 1.453724e-11 3819.376 Square 8563041
## 117 3819.376 1.453724e-11 3819.376 Square 8563041
## 118 3819.376 1.453724e-11 3819.376 Square 8563041
## 119 3819.376 1.453724e-11 3819.376 Square 8563041
## 120 3819.376 1.453724e-11 3819.376 Square 8563041
## 121 3819.376 1.453724e-11 3819.376 Square 8563041
## 122 3819.376 1.453724e-11 3819.376 Square 8563041
## 123 3819.376 1.453724e-11 3819.376 Square 8563041
## 124 3819.376 1.453724e-11 3819.376 Square 8563041
## 125 3819.376 1.453724e-11 3819.376 Square 8563041
## 126 3819.376 1.453724e-11 3819.376 Square 8563041
## 127 3819.376 1.453724e-11 3819.376 Square 8563041
## 128 3819.376 1.453724e-11 3819.376 Square 8563041
## 129 3819.376 1.453724e-11 3819.376 Square 8563041
## 130 3819.376 1.453724e-11 3819.376 Square 8563041
## 131 3819.376 1.453724e-11 3819.376 Square 8563041
## 132 3819.376 1.453724e-11 3819.376 Square 8563041
## 133 3819.376 1.453724e-11 3819.376 Square 8563041
## 134 3819.376 1.453724e-11 3819.376 Square 8563041
## 135 3819.376 1.453724e-11 3819.376 Square 8563041
## 136 3819.376 1.453724e-11 3819.376 Square 8563041
## 137 3819.376 1.453724e-11 3819.376 Square 8563041
## 138 3819.376 1.453724e-11 3819.376 Square 8563041
## 139 3819.376 1.453724e-11 3819.376 Square 8563041
## 140 3819.376 1.453724e-11 3819.376 Square 8563041
## 141 3819.376 1.453724e-11 3819.376 Square 8563041
## 142 3819.376 1.453724e-11 3819.376 Square 8563041
## 143 3819.376 1.453724e-11 3819.376 Square 8563041
## 144 3819.376 1.453724e-11 3819.376 Square 8563041
## 145 3819.376 1.453724e-11 3819.376 Square 8563041
## 146 3819.376 1.453724e-11 3819.376 Square 8563041
## 147 3819.376 1.453724e-11 3819.376 Square 8563041
## 148 3819.376 1.453724e-11 3819.376 Square 8563041
## 149 3819.376 1.453724e-11 3819.376 Square 8563041
## 150 3819.376 1.453724e-11 3819.376 Square 8563041
## 151 3819.376 1.453724e-11 3819.376 Square 8563041
## 152 3819.376 1.453724e-11 3819.376 Square 8563041
## 153 3819.376 1.453724e-11 3819.376 Square 8563041
## 154 3819.376 1.453724e-11 3819.376 Square 8563041
## 155 3819.376 1.453724e-11 3819.376 Square 8563041
## 156 3819.376 1.453724e-11 3819.376 Square 8563041
## 157 3819.376 1.453724e-11 3819.376 Square 8563041
## 158 3819.376 1.453724e-11 3819.376 Square 8563041
## 159 3819.376 1.453724e-11 3819.376 Square 8563041
## 160 3819.376 1.453724e-11 3819.376 Square 8563041
## 161 3819.376 1.453724e-11 3819.376 Square 8563041
## 162 3819.376 1.453724e-11 3819.376 Square 8563041
## 163 3819.376 1.453724e-11 3819.376 Square 8563041
## 164 3819.376 1.453724e-11 3819.376 Square 8563041
## 165 3819.376 1.453724e-11 3819.376 Square 8563041
## 166 3819.376 1.453724e-11 3819.376 Square 8563041
## 167 3819.376 1.453724e-11 3819.376 Square 8563041
## 168 3819.376 1.453724e-11 3819.376 Square 8563041
## 169 3819.376 1.453724e-11 3819.376 Square 8563041
## 170 3819.376 1.453724e-11 3819.376 Square 8563041
## 171 3819.376 1.453724e-11 3819.376 Square 8563041
## 172 3819.376 1.453724e-11 3819.376 Square 8563041
## 173 3819.376 1.453724e-11 3819.376 Square 8563041
## 174 3819.376 1.453724e-11 3819.376 Square 8563041
## 175 3819.376 1.453724e-11 3819.376 Square 8563041
## 176 3819.376 1.453724e-11 3819.376 Square 8563041
## 177 3819.376 1.453724e-11 3819.376 Square 8563041
## 178 3819.376 1.453724e-11 3819.376 Square 8563041
## 179 3819.376 1.453724e-11 3819.376 Square 8563041
## 180 3819.376 1.453724e-11 3819.376 Square 8563041
## 181 3819.376 1.453724e-11 3819.376 Square 8563041
## 182 3819.376 1.453724e-11 3819.376 Square 8563041
## 183 3819.376 1.453724e-11 3819.376 Square 8563041
## 184 3819.376 1.453724e-11 3819.376 Square 8563041
## 185 3819.376 1.453724e-11 3819.376 Square 8563041
## 186 3819.376 1.453724e-11 3819.376 Square 8563041
## 187 3819.376 1.453724e-11 3819.376 Square 8563041
## 188 3819.376 1.453724e-11 3819.376 Square 8563041
## 189 3819.376 1.453724e-11 3819.376 Square 8563041
## 190 3819.376 1.453724e-11 3819.376 Square 8563041
## 191 3819.376 1.453724e-11 3819.376 Square 8563041
## 192 3819.376 1.453724e-11 3819.376 Square 8563041
## 193 3819.376 1.453724e-11 3819.376 Square 8563041
## 194 3819.376 1.453724e-11 3819.376 Square 8563041
## 195 3819.376 1.453724e-11 3819.376 Square 8563041
## 196 3819.376 1.453724e-11 3819.376 Square 8563041
## 197 3819.376 1.453724e-11 3819.376 Square 8563041
## 198 3819.376 1.453724e-11 3819.376 Square 8563041
## 199 3819.376 1.453724e-11 3819.376 Square 8563041
## 200 3819.376 1.453724e-11 3819.376 Square 8563041
## 201 3819.376 1.453724e-11 3819.376 Square 8563041
## 202 3819.376 1.453724e-11 3819.376 Square 8563041
## 203 3819.376 1.453724e-11 3819.376 Square 8563041
## 204 3819.376 1.453724e-11 3819.376 Square 8563041
## 205 3819.376 1.453724e-11 3819.376 Square 8563041
## 206 3819.376 1.453724e-11 3819.376 Square 8563041
## 207 3819.376 1.453724e-11 3819.376 Square 8563041
## 208 3819.376 1.453724e-11 3819.376 Square 8563041
## 209 3819.376 1.453724e-11 3819.376 Square 8563041
## 210 3819.376 1.453724e-11 3819.376 Square 8563041
## 211 3819.376 1.453724e-11 3819.376 Square 8563041
## 212 3819.376 1.453724e-11 3819.376 Square 8563041
## 213 3819.376 1.453724e-11 3819.376 Square 8563041
## 214 3819.376 1.453724e-11 3819.376 Square 8563041
## 215 3819.376 1.453724e-11 3819.376 Square 8563041
## 216 3819.376 1.453724e-11 3819.376 Square 8563041
## 217 3819.376 1.453724e-11 3819.376 Square 8563041
## 218 3819.376 1.453724e-11 3819.376 Square 8563041
## 219 3819.376 1.453724e-11 3819.376 Square 8563041
## 220 3819.376 1.453724e-11 3819.376 Square 8563041
## 221 3819.376 1.453724e-11 3819.376 Square 8563041
## 222 3819.376 1.453724e-11 3819.376 Square 8563041
## 223 3819.376 1.453724e-11 3819.376 Square 8563041
## 224 3819.376 1.453724e-11 3819.376 Square 8563041
## 225 3819.376 1.453724e-11 3819.376 Square 8563041
## 226 3819.376 1.453724e-11 3819.376 Square 8563041
## 227 3819.376 1.453724e-11 3819.376 Square 8563041
## 228 3819.376 1.453724e-11 3819.376 Square 8563041
## 229 3819.376 1.453724e-11 3819.376 Square 8563041
## 230 3819.376 1.453724e-11 3819.376 Square 8563041
## 231 3819.376 1.453724e-11 3819.376 Square 8563041
## 232 3819.376 1.453724e-11 3819.376 Square 8563041
## 233 3819.376 1.453724e-11 3819.376 Square 8563041
## 234 3819.376 1.453724e-11 3819.376 Square 8563041
## 235 3819.376 1.453724e-11 3819.376 Square 8563041
## 236 3819.376 1.453724e-11 3819.376 Square 8563041
## 237 3819.376 1.453724e-11 3819.376 Square 8563041
## 238 3819.376 1.453724e-11 3819.376 Square 8563041
## 239 3819.376 1.453724e-11 3819.376 Square 8563041
## 240 3819.376 1.453724e-11 3819.376 Square 8563041
## 241 3819.376 1.453724e-11 3819.376 Square 8563041
## 242 3819.376 1.453724e-11 3819.376 Square 8563041
## 243 3819.376 1.453724e-11 3819.376 Square 8563041
## 244 3819.376 1.453724e-11 3819.376 Square 8563041
## 245 3819.376 1.453724e-11 3819.376 Square 8563041
## 246 3819.376 1.453724e-11 3819.376 Square 8563041
## 247 3819.376 1.453724e-11 3819.376 Square 8563041
## 248 3819.376 1.453724e-11 3819.376 Square 8563041
## 249 3819.376 1.453724e-11 3819.376 Square 8563041
## 250 3819.376 1.453724e-11 3819.376 Square 8563041
## 251 3819.376 1.453724e-11 3819.376 Square 8563041
## 252 3819.376 1.453724e-11 3819.376 Square 8563041
## 253 3819.376 1.453724e-11 3819.376 Square 8563041
## 254 3819.376 1.453724e-11 3819.376 Square 8563041
## 255 3819.376 1.453724e-11 3819.376 Square 8563041
## 256 3819.376 1.453724e-11 3819.376 Square 8563041
## 257 3819.376 1.453724e-11 3819.376 Square 8563041
## 258 3819.376 1.453724e-11 3819.376 Square 8563041
## 259 3819.376 1.453724e-11 3819.376 Square 8563041
## 260 3819.376 1.453724e-11 3819.376 Square 8563041
## 261 3819.376 1.453724e-11 3819.376 Square 8563041
## 262 3819.376 1.453724e-11 3819.376 Square 8563041
## 263 3819.376 1.453724e-11 3819.376 Square 8563041
## 264 3819.376 1.453724e-11 3819.376 Square 8563041
## 265 3819.376 1.453724e-11 3819.376 Square 8563041
## 266 3819.376 1.453724e-11 3819.376 Square 8563041
## 267 3819.376 1.453724e-11 3819.376 Square 8563041
## 268 3819.376 1.453724e-11 3819.376 Square 8563041
## 269 3819.376 1.453724e-11 3819.376 Square 8563041
## 270 3819.376 1.453724e-11 3819.376 Square 8563041
## 271 3819.376 1.453724e-11 3819.376 Square 8563041
## 272 3819.376 1.453724e-11 3819.376 Square 8563041
## 273 3819.376 1.453724e-11 3819.376 Square 8563041
## 274 3819.376 1.453724e-11 3819.376 Square 8563041
## 275 3819.376 1.453724e-11 3819.376 Square 8563041
## 276 3819.376 1.453724e-11 3819.376 Square 8563041
## 277 3819.376 1.453724e-11 3819.376 Square 8563041
## 278 3819.376 1.453724e-11 3819.376 Square 8563041
## 279 3819.376 1.453724e-11 3819.376 Square 8563041
## 280 3819.376 1.453724e-11 3819.376 Square 8563041
## 281 3819.376 1.453724e-11 3819.376 Square 8563041
## 282 3819.376 1.453724e-11 3819.376 Square 8563041
## 283 3819.376 1.453724e-11 3819.376 Square 8563041
## 284 3819.376 1.453724e-11 3819.376 Square 8563041
## 285 3819.376 1.453724e-11 3819.376 Square 8563041
## 286 3819.376 1.453724e-11 3819.376 Square 8563041
## 287 3819.376 1.453724e-11 3819.376 Square 8563041
## 288 3819.376 1.453724e-11 3819.376 Square 8563041
## 289 3819.376 1.453724e-11 3819.376 Square 8563041
## 290 3819.376 1.453724e-11 3819.376 Square 8563041
## 291 3819.376 1.453724e-11 3819.376 Square 8563041
## 292 3819.376 1.453724e-11 3819.376 Square 8563041
## 293 3819.376 1.453724e-11 3819.376 Square 8563041
## 294 3819.376 1.453724e-11 3819.376 Square 8563041
## 295 3819.376 1.453724e-11 3819.376 Square 8563041
## 296 3819.376 1.453724e-11 3819.376 Square 8563041
## 297 3819.376 1.453724e-11 3819.376 Square 8563041
## 298 3819.376 1.453724e-11 3819.376 Square 8563041
## 299 3819.376 1.453724e-11 3819.376 Square 8563041
## 300 3819.376 1.453724e-11 3819.376 Square 8563041
## 301 3819.376 1.453724e-11 3819.376 Square 8563041
## 302 3819.376 1.453724e-11 3819.376 Square 8563041
## 303 3819.376 1.453724e-11 3819.376 Square 8563041
## 304 3819.376 1.453724e-11 3819.376 Square 8563041
## 305 3819.376 1.453724e-11 3819.376 Square 8563041
## 306 3819.376 1.453724e-11 3819.376 Square 8563041
## 307 3819.376 1.453724e-11 3819.376 Square 8563041
## 308 3819.376 1.453724e-11 3819.376 Square 8563041
## 309 3819.376 1.453724e-11 3819.376 Square 8563041
## 310 3819.376 1.453724e-11 3819.376 Square 8563041
## 311 3819.376 1.453724e-11 3819.376 Square 8563041
## 312 3819.376 1.453724e-11 3819.376 Square 8563041
## 313 3819.376 1.453724e-11 3819.376 Square 8563041
## 314 3819.376 1.453724e-11 3819.376 Square 8563041
## 315 3819.376 1.453724e-11 3819.376 Square 8563041
## 316 3819.376 1.453724e-11 3819.376 Square 8563041
## 317 3819.376 1.453724e-11 3819.376 Square 8563041
## 318 3819.376 1.453724e-11 3819.376 Square 8563041
## 319 3819.376 1.453724e-11 3819.376 Square 8563041
## 320 3819.376 1.453724e-11 3819.376 Square 8563041
## 321 3819.376 1.453724e-11 3819.376 Square 8563041
## 322 3819.376 1.453724e-11 3819.376 Square 8563041
## 323 3819.376 1.453724e-11 3819.376 Square 8563041
## 324 3819.376 1.453724e-11 3819.376 Square 8563041
## 325 3819.376 1.453724e-11 3819.376 Square 8563041
## 326 3819.376 1.453724e-11 3819.376 Square 8563041
## 327 3819.376 1.453724e-11 3819.376 Square 8563041
## 328 3819.376 1.453724e-11 3819.376 Square 8563041
## 329 3819.376 1.453724e-11 3819.376 Square 8563041
## 330 3819.376 1.453724e-11 3819.376 Square 8563041
## 331 3819.376 1.453724e-11 3819.376 Square 8563041
## 332 3819.376 1.453724e-11 3819.376 Square 8563041
## 333 3819.376 1.453724e-11 3819.376 Square 8563041
## 334 3819.376 1.453724e-11 3819.376 Square 8563041
## 335 3819.376 1.453724e-11 3819.376 Square 8563041
## 336 3819.376 1.453724e-11 3819.376 Square 8563041
## 337 3819.376 1.453724e-11 3819.376 Square 8563041
## 338 3819.376 1.453724e-11 3819.376 Square 8563041
## 339 3819.376 1.453724e-11 3819.376 Square 8563041
## 340 3819.376 1.453724e-11 3819.376 Square 8563041
## 341 3819.376 1.453724e-11 3819.376 Square 8563041
## 342 3819.376 1.453724e-11 3819.376 Square 8563041
## 343 3819.376 1.453724e-11 3819.376 Square 8563041
## 344 3819.376 1.453724e-11 3819.376 Square 8563041
## 345 3819.376 1.453724e-11 3819.376 Square 8563041
## 346 3819.376 1.453724e-11 3819.376 Square 8563041
## 347 3819.376 1.453724e-11 3819.376 Square 8563041
## 348 3819.376 1.453724e-11 3819.376 Square 8563041
## 349 3819.376 1.453724e-11 3819.376 Square 8563041
## 350 3819.376 1.453724e-11 3819.376 Square 8563041
## 351 3819.376 1.453724e-11 3819.376 Square 8563041
## 352 3819.376 1.453724e-11 3819.376 Square 8563041
## 353 3819.376 1.453724e-11 3819.376 Square 8563041
## 354 3819.376 1.453724e-11 3819.376 Square 8563041
## 355 3819.376 1.453724e-11 3819.376 Square 8563041
## 356 3819.376 1.453724e-11 3819.376 Square 8563041
## 357 3819.376 1.453724e-11 3819.376 Square 8563041
## 358 3819.376 1.453724e-11 3819.376 Square 8563041
## 359 3819.376 1.453724e-11 3819.376 Square 8563041
## 360 3819.376 1.453724e-11 3819.376 Square 8563041
## 361 3819.376 1.453724e-11 3819.376 Square 8563041
## 362 3819.376 1.453724e-11 3819.376 Square 8563041
## 363 3819.376 1.453724e-11 3819.376 Square 8563041
## 364 3819.376 1.453724e-11 3819.376 Square 8563041
## 365 3819.376 1.453724e-11 3819.376 Square 8563041
## 366 3819.376 1.453724e-11 3819.376 Square 8563041
## 367 3819.376 1.453724e-11 3819.376 Square 8563041
## 368 3819.376 1.453724e-11 3819.376 Square 8563041
## 369 3819.376 1.453724e-11 3819.376 Square 8563041
## 370 3819.376 1.453724e-11 3819.376 Square 8563041
## 371 3819.376 1.453724e-11 3819.376 Square 8563041
## 372 3819.376 1.453724e-11 3819.376 Square 8563041
## 373 3819.376 1.453724e-11 3819.376 Square 8563041
## 374 3819.376 1.453724e-11 3819.376 Square 8563041
## 375 3819.376 1.453724e-11 3819.376 Square 8563041
## 376 3819.376 1.453724e-11 3819.376 Square 8563041
## 377 3819.376 1.453724e-11 3819.376 Square 8563041
## 378 3819.376 1.453724e-11 3819.376 Square 8563041
## 379 3819.376 1.453724e-11 3819.376 Square 8563041
## 380 3819.376 1.453724e-11 3819.376 Square 8563041
## 381 3819.376 1.453724e-11 3819.376 Square 8563041
## 382 3819.376 1.453724e-11 3819.376 Square 8563041
## 383 3819.376 1.453724e-11 3819.376 Square 8563041
## 384 3819.376 1.453724e-11 3819.376 Square 8563041
## 385 3819.376 1.453724e-11 3819.376 Square 8563041
## 386 3819.376 1.453724e-11 3819.376 Square 8563041
## 387 3819.376 1.453724e-11 3819.376 Square 8563041
## 388 3819.376 1.453724e-11 3819.376 Square 8563041
## 389 3819.376 1.453724e-11 3819.376 Square 8563041
## 390 3819.376 1.453724e-11 3819.376 Square 8563041
## 391 3819.376 1.453724e-11 3819.376 Square 8563041
## 392 3819.376 1.453724e-11 3819.376 Square 8563041
## 393 3819.376 1.453724e-11 3819.376 Square 8563041
## 394 3819.376 1.453724e-11 3819.376 Square 8563041
## 395 3819.376 1.453724e-11 3819.376 Square 8563041
## 396 3819.376 1.453724e-11 3819.376 Square 8563041
## 397 3819.376 1.453724e-11 3819.376 Square 8563041
## 398 3819.376 1.453724e-11 3819.376 Square 8563041
## 399 3819.376 1.453724e-11 3819.376 Square 8563041
## 400 3819.376 1.453724e-11 3819.376 Square 8563041
## 401 3819.376 1.453724e-11 3819.376 Square 8563041
## 402 3819.376 1.453724e-11 3819.376 Square 8563041
## 403 3819.376 1.453724e-11 3819.376 Square 8563041
## 404 3819.376 1.453724e-11 3819.376 Square 8563041
## 405 3819.376 1.453724e-11 3819.376 Square 8563041
## 406 3819.376 1.453724e-11 3819.376 Square 8563041
## 407 3819.376 1.453724e-11 3819.376 Square 8563041
## 408 3819.376 1.453724e-11 3819.376 Square 8563041
## 409 3819.376 1.453724e-11 3819.376 Square 8563041
## 410 3819.376 1.453724e-11 3819.376 Square 8563041
## 411 3819.376 1.453724e-11 3819.376 Square 8563041
## 412 3819.376 1.453724e-11 3819.376 Square 8563041
## 413 3819.376 1.453724e-11 3819.376 Square 8563041
## 414 3819.376 1.453724e-11 3819.376 Square 8563041
## 415 3819.376 1.453724e-11 3819.376 Square 8563041
## 416 3819.376 1.453724e-11 3819.376 Square 8563041
## 417 3819.376 1.453724e-11 3819.376 Square 8563041
## 418 3819.376 1.453724e-11 3819.376 Square 8563041
## 419 3819.376 1.453724e-11 3819.376 Square 8563041
## 420 3819.376 1.453724e-11 3819.376 Square 8563041
## 421 3819.376 1.453724e-11 3819.376 Square 8563041
## 422 3819.376 1.453724e-11 3819.376 Square 8563041
## 423 3819.376 1.453724e-11 3819.376 Square 8563041
## 424 3819.376 1.453724e-11 3819.376 Square 8563041
## 425 3819.376 1.453724e-11 3819.376 Square 8563041
## 426 3819.376 1.453724e-11 3819.376 Square 8563041
## 427 3819.376 1.453724e-11 3819.376 Square 8563041
## 428 3819.376 1.453724e-11 3819.376 Square 8563041
## 429 3819.376 1.453724e-11 3819.376 Square 8563041
## 430 3819.376 1.453724e-11 3819.376 Square 8563041
## 431 3819.376 1.453724e-11 3819.376 Square 8563041
## 432 3819.376 1.453724e-11 3819.376 Square 8563041
## 433 3819.376 1.453724e-11 3819.376 Square 8563041
## 434 3819.376 1.453724e-11 3819.376 Square 8563041
## 435 3819.376 1.453724e-11 3819.376 Square 8563041
## 436 3819.376 1.453724e-11 3819.376 Square 8563041
## 437 3819.376 1.453724e-11 3819.376 Square 8563041
## 438 3819.376 1.453724e-11 3819.376 Square 8563041
## 439 3819.376 1.453724e-11 3819.376 Square 8563041
## 440 3819.376 1.453724e-11 3819.376 Square 8563041
## 441 3819.376 1.453724e-11 3819.376 Square 8563041
## 442 3819.376 1.453724e-11 3819.376 Square 8563041
## 443 3819.376 1.453724e-11 3819.376 Square 8563041
## 444 3819.376 1.453724e-11 3819.376 Square 8563041
## 445 3819.376 1.453724e-11 3819.376 Square 8563041
## 446 3819.376 1.453724e-11 3819.376 Square 8563041
## 447 3819.376 1.453724e-11 3819.376 Square 8563041
## 448 3819.376 1.453724e-11 3819.376 Square 8563041
## 449 3819.376 1.453724e-11 3819.376 Square 8563041
## 450 3819.376 1.453724e-11 3819.376 Square 8563041
## 451 3819.376 1.453724e-11 3819.376 Square 8563041
## 452 3819.376 1.453724e-11 3819.376 Square 8563041
## 453 3819.376 1.453724e-11 3819.376 Square 8563041
## 454 3819.376 1.453724e-11 3819.376 Square 8563041
## 455 3819.376 1.453724e-11 3819.376 Square 8563041
## 456 3819.376 1.453724e-11 3819.376 Square 8563041
## 457 3819.376 1.453724e-11 3819.376 Square 8563041
## 458 3819.376 1.453724e-11 3819.376 Square 8563041
## 459 3819.376 1.453724e-11 3819.376 Square 8563041
## 460 3819.376 1.453724e-11 3819.376 Square 8563041
## 461 3819.376 1.453724e-11 3819.376 Square 8563041
## 462 3819.376 1.453724e-11 3819.376 Square 8563041
## 463 3819.376 1.453724e-11 3819.376 Square 8563041
## 464 3819.376 1.453724e-11 3819.376 Square 8563041
## 465 3819.376 1.453724e-11 3819.376 Square 8563041
## 466 3819.376 1.453724e-11 3819.376 Square 8563041
## 467 3819.376 1.453724e-11 3819.376 Square 8563041
## 468 3819.376 1.453724e-11 3819.376 Square 8563041
## 469 3819.376 1.453724e-11 3819.376 Square 8563041
## 470 3819.376 1.453724e-11 3819.376 Square 8563041
## 471 3819.376 1.453724e-11 3819.376 Square 8563041
## 472 3819.376 1.453724e-11 3819.376 Square 8563041
## 473 3819.376 1.453724e-11 3819.376 Square 8563041
## 474 3819.376 1.453724e-11 3819.376 Square 8563041
## 475 3819.376 1.453724e-11 3819.376 Square 8563041
## 476 3819.376 1.453724e-11 3819.376 Square 8563041
## 477 3819.376 1.453724e-11 3819.376 Square 8563041
## 478 3819.376 1.453724e-11 3819.376 Square 8563041
## 479 3819.376 1.453724e-11 3819.376 Square 8563041
## 480 3819.376 1.453724e-11 3819.376 Square 8563041
## 481 3819.376 1.453724e-11 3819.376 Square 8563041
## 482 3819.376 1.453724e-11 3819.376 Square 8563041
## 483 3819.376 1.453724e-11 3819.376 Square 8563041
## 484 3819.376 1.453724e-11 3819.376 Square 8563041
## 485 3819.376 1.453724e-11 3819.376 Square 8563041
## 486 3819.376 1.453724e-11 3819.376 Square 8563041
## 487 3819.376 1.453724e-11 3819.376 Square 8563041
## 488 3819.376 1.453724e-11 3819.376 Square 8563041
## 489 3819.376 1.453724e-11 3819.376 Square 8563041
## 490 3819.376 1.453724e-11 3819.376 Square 8563041
## 491 3819.376 1.453724e-11 3819.376 Square 8563041
## 492 3819.376 1.453724e-11 3819.376 Square 8563041
## 493 3819.376 1.453724e-11 3819.376 Square 8563041
## 494 3819.376 1.453724e-11 3819.376 Square 8563041
## 495 3819.376 1.453724e-11 3819.376 Square 8563041
## 496 3819.376 1.453724e-11 3819.376 Square 8563041
## 497 3819.376 1.453724e-11 3819.376 Square 8563041
## 498 3819.376 1.453724e-11 3819.376 Square 8563041
## 499 3819.376 1.453724e-11 3819.376 Square 8563041
## 500 3819.376 1.453724e-11 3819.376 Square 8563041
## 501 3819.376 1.453724e-11 3819.376 Square 8563041
## 502 3819.376 1.453724e-11 3819.376 Square 8563041
## 503 3819.376 1.453724e-11 3819.376 Square 8563041
## 504 3819.376 1.453724e-11 3819.376 Square 8563041
## 505 3819.376 1.453724e-11 3819.376 Square 8563041
## 506 3819.376 1.453724e-11 3819.376 Square 8563041
## 507 3819.376 1.453724e-11 3819.376 Square 8563041
## 508 3819.376 1.453724e-11 3819.376 Square 8563041
## 509 3819.376 1.453724e-11 3819.376 Square 8563041
## 510 3819.376 1.453724e-11 3819.376 Square 8563041
## 511 3819.376 1.453724e-11 3819.376 Square 8563041
## 512 3819.376 1.453724e-11 3819.376 Square 8563041
## 513 3819.376 1.453724e-11 3819.376 Square 8563041
## 514 3819.376 1.453724e-11 3819.376 Square 8563041
## 515 3819.376 1.453724e-11 3819.376 Square 8563041
## 516 3819.376 1.453724e-11 3819.376 Square 8563041
## 517 3819.376 1.453724e-11 3819.376 Square 8563041
## 518 3819.376 1.453724e-11 3819.376 Square 8563041
## 519 3819.376 1.453724e-11 3819.376 Square 8563041
## 520 3819.376 1.453724e-11 3819.376 Square 8563041
## 521 3819.376 1.453724e-11 3819.376 Square 8563041
## 522 3819.376 1.453724e-11 3819.376 Square 8563041
## 523 3819.376 1.453724e-11 3819.376 Square 8563041
## 524 3819.376 1.453724e-11 3819.376 Square 8563041
## 525 3819.376 1.453724e-11 3819.376 Square 8563041
## 526 3819.376 1.453724e-11 3819.376 Square 8563041
## 527 3819.376 1.453724e-11 3819.376 Square 8563041
## 528 3819.376 1.453724e-11 3819.376 Square 8563041
## 529 3819.376 1.453724e-11 3819.376 Square 8563041
## 530 3819.376 1.453724e-11 3819.376 Square 8563041
## 531 3819.376 1.453724e-11 3819.376 Square 8563041
## 532 3819.376 1.453724e-11 3819.376 Square 8563041
## 533 3819.376 1.453724e-11 3819.376 Square 8563041
## 534 3819.376 1.453724e-11 3819.376 Square 8563041
## 535 3819.376 1.453724e-11 3819.376 Square 8563041
## 536 3819.376 1.453724e-11 3819.376 Square 8563041
## 537 3819.376 1.453724e-11 3819.376 Square 8563041
## 538 3819.376 1.453724e-11 3819.376 Square 8563041
## 539 3819.376 1.453724e-11 3819.376 Square 8563041
## 540 3819.376 1.453724e-11 3819.376 Square 8563041
## 541 3819.376 1.453724e-11 3819.376 Square 8563041
## 542 3819.376 1.453724e-11 3819.376 Square 8563041
## 543 3819.376 1.453724e-11 3819.376 Square 8563041
## 544 3819.376 1.453724e-11 3819.376 Square 8563041
## 545 3819.376 1.453724e-11 3819.376 Square 8563041
## 546 3819.376 1.453724e-11 3819.376 Square 8563041
## 547 3819.376 1.453724e-11 3819.376 Square 8563041
## 548 3819.376 1.453724e-11 3819.376 Square 8563041
## 549 3819.376 1.453724e-11 3819.376 Square 8563041
## 550 3819.376 1.453724e-11 3819.376 Square 8563041
## 551 3819.376 1.453724e-11 3819.376 Square 8563041
## 552 3819.376 1.453724e-11 3819.376 Square 8563041
## 553 3819.376 1.453724e-11 3819.376 Square 8563041
## 554 3819.376 1.453724e-11 3819.376 Square 8563041
## 555 3819.376 1.453724e-11 3819.376 Square 8563041
## 556 3819.376 1.453724e-11 3819.376 Square 8563041
## 557 3819.376 1.453724e-11 3819.376 Square 8563041
## 558 3819.376 1.453724e-11 3819.376 Square 8563041
## 559 3819.376 1.453724e-11 3819.376 Square 8563041
## 560 3819.376 1.453724e-11 3819.376 Square 8563041
## 561 3819.376 1.453724e-11 3819.376 Square 8563041
## 562 3819.376 1.453724e-11 3819.376 Square 8563041
## 563 3819.376 1.453724e-11 3819.376 Square 8563041
## 564 3819.376 1.453724e-11 3819.376 Square 8563041
## 565 3819.376 1.453724e-11 3819.376 Square 8563041
## 566 3819.376 1.453724e-11 3819.376 Square 8563041
## 567 3819.376 1.453724e-11 3819.376 Square 8563041
## 568 3819.376 1.453724e-11 3819.376 Square 8563041
## 569 3819.376 1.453724e-11 3819.376 Square 8563041
## 570 3819.376 1.453724e-11 3819.376 Square 8563041
## 571 3819.376 1.453724e-11 3819.376 Square 8563041
## 572 3819.376 1.453724e-11 3819.376 Square 8563041
## 573 3819.376 1.453724e-11 3819.376 Square 8563041
## 574 3819.376 1.453724e-11 3819.376 Square 8563041
## 575 3819.376 1.453724e-11 3819.376 Square 8563041
## 576 3819.376 1.453724e-11 3819.376 Square 8563041
## 577 3819.376 1.453724e-11 3819.376 Square 8563041
## 578 3819.376 1.453724e-11 3819.376 Square 8563041
## 579 3819.376 1.453724e-11 3819.376 Square 8563041
## 580 3819.376 1.453724e-11 3819.376 Square 8563041
## 581 3819.376 1.453724e-11 3819.376 Square 8563041
## 582 3819.376 1.453724e-11 3819.376 Square 8563041
## 583 3819.376 1.453724e-11 3819.376 Square 8563041
## 584 3819.376 1.453724e-11 3819.376 Square 8563041
## 585 3819.376 1.453724e-11 3819.376 Square 8563041
## 586 3819.376 1.453724e-11 3819.376 Square 8563041
## 587 3819.376 1.453724e-11 3819.376 Square 8563041
## 588 3819.376 1.453724e-11 3819.376 Square 8563041
## 589 3819.376 1.453724e-11 3819.376 Square 8563041
## 590 3819.376 1.453724e-11 3819.376 Square 8563041
## 591 3819.376 1.453724e-11 3819.376 Square 8563041
## 592 3819.376 1.453724e-11 3819.376 Square 8563041
## 593 3819.376 1.453724e-11 3819.376 Square 8563041
## 594 3819.376 1.453724e-11 3819.376 Square 8563041
## 595 3819.376 1.453724e-11 3819.376 Square 8563041
## 596 3819.376 1.453724e-11 3819.376 Square 8563041
## 597 3819.376 1.453724e-11 3819.376 Square 8563041
## 598 3819.376 1.453724e-11 3819.376 Square 8563041
## 599 3819.376 1.453724e-11 3819.376 Square 8563041
## 600 3819.376 1.453724e-11 3819.376 Square 8563041
## 601 3819.376 1.453724e-11 3819.376 Square 8563041
## 602 3819.376 1.453724e-11 3819.376 Square 8563041
## 603 3819.376 1.453724e-11 3819.376 Square 8563041
## 604 3819.376 1.453724e-11 3819.376 Square 8563041
## 605 3819.376 1.453724e-11 3819.376 Square 8563041
## 606 3819.376 1.453724e-11 3819.376 Square 8563041
## 607 3819.376 1.453724e-11 3819.376 Square 8563041
## 608 3819.376 1.453724e-11 3819.376 Square 8563041
## 609 3819.376 1.453724e-11 3819.376 Square 8563041
## 610 3819.376 1.453724e-11 3819.376 Square 8563041
## 611 3819.376 1.453724e-11 3819.376 Square 8563041
## 612 3819.376 1.453724e-11 3819.376 Square 8563041
## 613 3819.376 1.453724e-11 3819.376 Square 8563041
## 614 3819.376 1.453724e-11 3819.376 Square 8563041
## 615 3819.376 1.453724e-11 3819.376 Square 8563041
## 616 3819.376 1.453724e-11 3819.376 Square 8563041
## 617 3819.376 1.453724e-11 3819.376 Square 8563041
## 618 3819.376 1.453724e-11 3819.376 Square 8563041
## 619 3819.376 1.453724e-11 3819.376 Square 8563041
## 620 3819.376 1.453724e-11 3819.376 Square 8563041
## 621 3819.376 1.453724e-11 3819.376 Square 8563041
## 622 3819.376 1.453724e-11 3819.376 Square 8563041
## 623 3819.376 1.453724e-11 3819.376 Square 8563041
## 624 3819.376 1.453724e-11 3819.376 Square 8563041
## 625 3819.376 1.453724e-11 3819.376 Square 8563041
## 626 3819.376 1.453724e-11 3819.376 Square 8563041
## 627 3819.376 1.453724e-11 3819.376 Square 8563041
## 628 3819.376 1.453724e-11 3819.376 Square 8563041
## 629 3819.376 1.453724e-11 3819.376 Square 8563041
## 630 3819.376 1.453724e-11 3819.376 Square 8563041
## 631 3819.376 1.453724e-11 3819.376 Square 8563041
## 632 3819.376 1.453724e-11 3819.376 Square 8563041
## 633 3819.376 1.453724e-11 3819.376 Square 8563041
## 634 3819.376 1.453724e-11 3819.376 Square 8563041
## 635 3819.376 1.453724e-11 3819.376 Square 8563041
## 636 3819.376 1.453724e-11 3819.376 Square 8563041
## 637 3819.376 1.453724e-11 3819.376 Square 8563041
## 638 3819.376 1.453724e-11 3819.376 Square 8563041
## 639 3819.376 1.453724e-11 3819.376 Square 8563041
## 640 3819.376 1.453724e-11 3819.376 Square 8563041
## 641 3819.376 1.453724e-11 3819.376 Square 8563041
## 642 3819.376 1.453724e-11 3819.376 Square 8563041
## 643 3819.376 1.453724e-11 3819.376 Square 8563041
## 644 3819.376 1.453724e-11 3819.376 Square 8563041
## 645 3819.376 1.453724e-11 3819.376 Square 8563041
## 646 3819.376 1.453724e-11 3819.376 Square 8563041
## 647 3819.376 1.453724e-11 3819.376 Square 8563041
## 648 3819.376 1.453724e-11 3819.376 Square 8563041
## 649 3819.376 1.453724e-11 3819.376 Square 8563041
## 650 3819.376 1.453724e-11 3819.376 Square 8563041
## 651 3819.376 1.453724e-11 3819.376 Square 8563041
## 652 3819.376 1.453724e-11 3819.376 Square 8563041
## 653 3819.376 1.453724e-11 3819.376 Square 8563041
## 654 3819.376 1.453724e-11 3819.376 Square 8563041
## 655 3819.376 1.453724e-11 3819.376 Square 8563041
## 656 3819.376 1.453724e-11 3819.376 Square 8563041
## 657 3819.376 1.453724e-11 3819.376 Square 8563041
## 658 3819.376 1.453724e-11 3819.376 Square 8563041
## 659 3819.376 1.453724e-11 3819.376 Square 8563041
## 660 3819.376 1.453724e-11 3819.376 Square 8563041
## 661 3819.376 1.453724e-11 3819.376 Square 8563041
## 662 3819.376 1.453724e-11 3819.376 Square 8563041
## 663 3819.376 1.453724e-11 3819.376 Square 8563041
## 664 3819.376 1.453724e-11 3819.376 Square 8563041
## 665 3819.376 1.453724e-11 3819.376 Square 8563041
## 666 3819.376 1.453724e-11 3819.376 Square 8563041
## 667 3819.376 1.453724e-11 3819.376 Square 8563041
## 668 3819.376 1.453724e-11 3819.376 Square 8563041
## 669 3819.376 1.453724e-11 3819.376 Square 8563041
## 670 3819.376 1.453724e-11 3819.376 Square 8563041
## 671 3819.376 1.453724e-11 3819.376 Square 8563041
## 672 3819.376 1.453724e-11 3819.376 Square 8563041
## 673 3819.376 1.453724e-11 3819.376 Square 8563041
## 674 3819.376 1.453724e-11 3819.376 Square 8563041
## 675 3819.376 1.453724e-11 3819.376 Square 8563041
## 676 3819.376 1.453724e-11 3819.376 Square 8563041
## 677 3819.376 1.453724e-11 3819.376 Square 8563041
## 678 3819.376 1.453724e-11 3819.376 Square 8563041
## 679 3819.376 1.453724e-11 3819.376 Square 8563041
## 680 3819.376 1.453724e-11 3819.376 Square 8563041
## 681 3819.376 1.453724e-11 3819.376 Square 8563041
## 682 3819.376 1.453724e-11 3819.376 Square 8563041
## 683 3819.376 1.453724e-11 3819.376 Square 8563041
## 684 3819.376 1.453724e-11 3819.376 Square 8563041
## 685 3819.376 1.453724e-11 3819.376 Square 8563041
## 686 3819.376 1.453724e-11 3819.376 Square 8563041
## 687 3819.376 1.453724e-11 3819.376 Square 8563041
## 688 3819.376 1.453724e-11 3819.376 Square 8563041
## 689 3819.376 1.453724e-11 3819.376 Square 8563041
## 690 3819.376 1.453724e-11 3819.376 Square 8563041
## 691 3819.376 1.453724e-11 3819.376 Square 8563041
## 692 3819.376 1.453724e-11 3819.376 Square 8563041
## 693 3819.376 1.453724e-11 3819.376 Square 8563041
## 694 3819.376 1.453724e-11 3819.376 Square 8563041
## 695 3819.376 1.453724e-11 3819.376 Square 8563041
## 696 3819.376 1.453724e-11 3819.376 Square 8563041
## 697 3819.376 1.453724e-11 3819.376 Square 8563041
## 698 3819.376 1.453724e-11 3819.376 Square 8563041
## 699 3819.376 1.453724e-11 3819.376 Square 8563041
## 700 3819.376 1.453724e-11 3819.376 Square 8563041
## 701 3819.376 1.453724e-11 3819.376 Square 8563041
## 702 3819.376 1.453724e-11 3819.376 Square 8563041
## 703 3819.376 1.453724e-11 3819.376 Square 8563041
## 704 3819.376 1.453724e-11 3819.376 Square 8563041
## 705 3819.376 1.453724e-11 3819.376 Square 8563041
## 706 3819.376 1.453724e-11 3819.376 Square 8563041
## 707 3819.376 1.453724e-11 3819.376 Square 8563041
## 708 3819.376 1.453724e-11 3819.376 Square 8563041
## 709 3819.376 1.453724e-11 3819.376 Square 8563041
## 710 3819.376 1.453724e-11 3819.376 Square 8563041
## 711 3819.376 1.453724e-11 3819.376 Square 8563041
## 712 3819.376 1.453724e-11 3819.376 Square 8563041
## 713 3819.376 1.453724e-11 3819.376 Square 8563041
## 714 3819.376 1.453724e-11 3819.376 Square 8563041
## 715 3819.376 1.453724e-11 3819.376 Square 8563041
## 716 3819.376 1.453724e-11 3819.376 Square 8563041
## 717 3819.376 1.453724e-11 3819.376 Square 8563041
## 718 3819.376 1.453724e-11 3819.376 Square 8563041
## 719 3819.376 1.453724e-11 3819.376 Square 8563041
## 720 3819.376 1.453724e-11 3819.376 Square 8563041
## 721 3819.376 1.453724e-11 3819.376 Square 8563041
## 722 3819.376 1.453724e-11 3819.376 Square 8563041
## 723 3819.376 1.453724e-11 3819.376 Square 8563041
## 724 3819.376 1.453724e-11 3819.376 Square 8563041
## 725 3819.376 1.453724e-11 3819.376 Square 8563041
## 726 3819.376 1.453724e-11 3819.376 Square 8563041
## 727 3819.376 1.453724e-11 3819.376 Square 8563041
## 728 3819.376 1.453724e-11 3819.376 Square 8563041
## 729 3819.376 1.453724e-11 3819.376 Square 8563041
## 730 3819.376 1.453724e-11 3819.376 Square 8563041
## 731 3819.376 1.453724e-11 3819.376 Square 8563041
## 732 3819.376 1.453724e-11 3819.376 Square 8563041
## 733 3819.376 1.453724e-11 3819.376 Square 8563041
## 734 3819.376 1.453724e-11 3819.376 Square 8563041
## 735 3819.376 1.453724e-11 3819.376 Square 8563041
## 736 3819.376 1.453724e-11 3819.376 Square 8563041
## 737 3819.376 1.453724e-11 3819.376 Square 8563041
## 738 3819.376 1.453724e-11 3819.376 Square 8563041
## 739 3819.376 1.453724e-11 3819.376 Square 8563041
## 740 3819.376 1.453724e-11 3819.376 Square 8563041
## 741 3819.376 1.453724e-11 3819.376 Square 8563041
## 742 3819.376 1.453724e-11 3819.376 Square 8563041
## 743 3819.376 1.453724e-11 3819.376 Square 8563041
## 744 3819.376 1.453724e-11 3819.376 Square 8563041
## 745 3819.376 1.453724e-11 3819.376 Square 8563041
## 746 3819.376 1.453724e-11 3819.376 Square 8563041
## 747 3819.376 1.453724e-11 3819.376 Square 8563041
## 748 3819.376 1.453724e-11 3819.376 Square 8563041
## 749 3819.376 1.453724e-11 3819.376 Square 8563041
## 750 3819.376 1.453724e-11 3819.376 Square 8563041
## 751 3819.376 1.453724e-11 3819.376 Square 8563041
## 752 3819.376 1.453724e-11 3819.376 Square 8563041
## 753 3819.376 1.453724e-11 3819.376 Square 8563041
## 754 3819.376 1.453724e-11 3819.376 Square 8563041
## 755 3819.376 1.453724e-11 3819.376 Square 8563041
## 756 3819.376 1.453724e-11 3819.376 Square 8563041
## 757 3819.376 1.453724e-11 3819.376 Square 8563041
## 758 3819.376 1.453724e-11 3819.376 Square 8563041
## 759 3819.376 1.453724e-11 3819.376 Square 8563041
## 760 3819.376 1.453724e-11 3819.376 Square 8563041
## 761 3819.376 1.453724e-11 3819.376 Square 8563041
## 762 3819.376 1.453724e-11 3819.376 Square 8563041
## 763 3819.376 1.453724e-11 3819.376 Square 8563041
## 764 3819.376 1.453724e-11 3819.376 Square 8563041
## 765 3819.376 1.453724e-11 3819.376 Square 8563041
## 766 3819.376 1.453724e-11 3819.376 Square 8563041
## 767 3819.376 1.453724e-11 3819.376 Square 8563041
## 768 3819.376 1.453724e-11 3819.376 Square 8563041
## 769 3819.376 1.453724e-11 3819.376 Square 8563041
## 770 3819.376 1.453724e-11 3819.376 Square 8563041
## 771 3819.376 1.453724e-11 3819.376 Square 8563041
## 772 3819.376 1.453724e-11 3819.376 Square 8563041
## 773 3819.376 1.453724e-11 3819.376 Square 8563041
## 774 3819.376 1.453724e-11 3819.376 Square 8563041
## 775 3819.376 1.453724e-11 3819.376 Square 8563041
## 776 3819.376 1.453724e-11 3819.376 Square 8563041
## 777 3819.376 1.453724e-11 3819.376 Square 8563041
## 778 3819.376 1.453724e-11 3819.376 Square 8563041
## 779 3819.376 1.453724e-11 3819.376 Square 8563041
## 780 3819.376 1.453724e-11 3819.376 Square 8563041
## 781 3819.376 1.453724e-11 3819.376 Square 8563041
## 782 3819.376 1.453724e-11 3819.376 Square 8563041
## 783 3819.376 1.453724e-11 3819.376 Square 8563041
## 784 3819.376 1.453724e-11 3819.376 Square 8563041
## 785 3819.376 1.453724e-11 3819.376 Square 8563041
## 786 3819.376 1.453724e-11 3819.376 Square 8563041
## 787 3819.376 1.453724e-11 3819.376 Square 8563041
## 788 3819.376 1.453724e-11 3819.376 Square 8563041
## 789 3819.376 1.453724e-11 3819.376 Square 8563041
## 790 3819.376 1.453724e-11 3819.376 Square 8563041
## 791 3819.376 1.453724e-11 3819.376 Square 8563041
## 792 3819.376 1.453724e-11 3819.376 Square 8563041
## 793 3819.376 1.453724e-11 3819.376 Square 8563041
## 794 3819.376 1.453724e-11 3819.376 Square 8563041
## 795 3819.376 1.453724e-11 3819.376 Square 8563041
## 796 3819.376 1.453724e-11 3819.376 Square 8563041
## 797 3819.376 1.453724e-11 3819.376 Square 8563041
## 798 3819.376 1.453724e-11 3819.376 Square 8563041
## 799 3819.376 1.453724e-11 3819.376 Square 8563041
## 800 3819.376 1.453724e-11 3819.376 Square 8563041
## 801 3819.376 1.453724e-11 3819.376 Square 8563041
## 802 3819.376 1.453724e-11 3819.376 Square 8563041
## 803 3819.376 1.453724e-11 3819.376 Square 8563041
## 804 3819.376 1.453724e-11 3819.376 Square 8563041
## 805 3819.376 1.453724e-11 3819.376 Square 8563041
## 806 3819.376 1.453724e-11 3819.376 Square 8563041
## 807 3819.376 1.453724e-11 3819.376 Square 8563041
## 808 3819.376 1.453724e-11 3819.376 Square 8563041
## 809 3819.376 1.453724e-11 3819.376 Square 8563041
## 810 3819.376 1.453724e-11 3819.376 Square 8563041
## 811 3819.376 1.453724e-11 3819.376 Square 8563041
## 812 3819.376 1.453724e-11 3819.376 Square 8563041
## 813 3819.376 1.453724e-11 3819.376 Square 8563041
## 814 3819.376 1.453724e-11 3819.376 Square 8563041
## 815 3819.376 1.453724e-11 3819.376 Square 8563041
## 816 3819.376 1.453724e-11 3819.376 Square 8563041
## 817 3819.376 1.453724e-11 3819.376 Square 8563041
## 818 3819.376 1.453724e-11 3819.376 Square 8563041
## 819 3819.376 1.453724e-11 3819.376 Square 8563041
## 820 3819.376 1.453724e-11 3819.376 Square 8563041
## 821 3819.376 1.453724e-11 3819.376 Square 8563041
## 822 3819.376 1.453724e-11 3819.376 Square 8563041
## 823 3819.376 1.453724e-11 3819.376 Square 8563041
## 824 3819.376 1.453724e-11 3819.376 Square 8563041
## 825 3819.376 1.453724e-11 3819.376 Square 8563041
## 826 3819.376 1.453724e-11 3819.376 Square 8563041
## 827 3819.376 1.453724e-11 3819.376 Square 8563041
## 828 3819.376 1.453724e-11 3819.376 Square 8563041
## 829 3819.376 1.453724e-11 3819.376 Square 8563041
## 830 3819.376 1.453724e-11 3819.376 Square 8563041
## 831 3819.376 1.453724e-11 3819.376 Square 8563041
## 832 3819.376 1.453724e-11 3819.376 Square 8563041
## 833 3819.376 1.453724e-11 3819.376 Square 8563041
## 834 3819.376 1.453724e-11 3819.376 Square 8563041
## 835 3819.376 1.453724e-11 3819.376 Square 8563041
## 836 3819.376 1.453724e-11 3819.376 Square 8563041
## 837 3819.376 1.453724e-11 3819.376 Square 8563041
## 838 3819.376 1.453724e-11 3819.376 Square 8563041
## 839 3819.376 1.453724e-11 3819.376 Square 8563041
## 840 3819.376 1.453724e-11 3819.376 Square 8563041
## 841 3819.376 1.453724e-11 3819.376 Square 8563041
## 842 3819.376 1.453724e-11 3819.376 Square 8563041
## 843 3819.376 1.453724e-11 3819.376 Square 8563041
## 844 3819.376 1.453724e-11 3819.376 Square 8563041
## 845 3819.376 1.453724e-11 3819.376 Square 8563041
## 846 3819.376 1.453724e-11 3819.376 Square 8563041
## 847 3819.376 1.453724e-11 3819.376 Square 8563041
## 848 3819.376 1.453724e-11 3819.376 Square 8563041
## 849 3819.376 1.453724e-11 3819.376 Square 8563041
## 850 3819.376 1.453724e-11 3819.376 Square 8563041
## 851 3819.376 1.453724e-11 3819.376 Square 8563041
## 852 3819.376 1.453724e-11 3819.376 Square 8563041
## 853 3819.376 1.453724e-11 3819.376 Square 8563041
## 854 3819.376 1.453724e-11 3819.376 Square 8563041
## 855 3819.376 1.453724e-11 3819.376 Square 8563041
## 856 3819.376 1.453724e-11 3819.376 Square 8563041
## 857 3819.376 1.453724e-11 3819.376 Square 8563041
## 858 3819.376 1.453724e-11 3819.376 Square 8563041
## 859 3819.376 1.453724e-11 3819.376 Square 8563041
## 860 3819.376 1.453724e-11 3819.376 Square 8563041
## 861 3819.376 1.453724e-11 3819.376 Square 8563041
## 862 3819.376 1.453724e-11 3819.376 Square 8563041
## 863 3819.376 1.453724e-11 3819.376 Square 8563041
## 864 3819.376 1.453724e-11 3819.376 Square 8563041
## 865 3819.376 1.453724e-11 3819.376 Square 8563041
## 866 3819.376 1.453724e-11 3819.376 Square 8563041
## 867 3819.376 1.453724e-11 3819.376 Square 8563041
## 868 3819.376 1.453724e-11 3819.376 Square 8563041
## 869 3819.376 1.453724e-11 3819.376 Square 8563041
## 870 3819.376 1.453724e-11 3819.376 Square 8563041
## 871 3819.376 1.453724e-11 3819.376 Square 8563041
## 872 3819.376 1.453724e-11 3819.376 Square 8563041
## 873 3819.376 1.453724e-11 3819.376 Square 8563041
## 874 3819.376 1.453724e-11 3819.376 Square 8563041
## 875 3819.376 1.453724e-11 3819.376 Square 8563041
## 876 3819.376 1.453724e-11 3819.376 Square 8563041
## 877 3819.376 1.453724e-11 3819.376 Square 8563041
## 878 3819.376 1.453724e-11 3819.376 Square 8563041
## 879 3819.376 1.453724e-11 3819.376 Square 8563041
## 880 3819.376 1.453724e-11 3819.376 Square 8563041
## 881 3819.376 1.453724e-11 3819.376 Square 8563041
## 882 3819.376 1.453724e-11 3819.376 Square 8563041
## 883 3819.376 1.453724e-11 3819.376 Square 8563041
## 884 3819.376 1.453724e-11 3819.376 Square 8563041
## 885 3819.376 1.453724e-11 3819.376 Square 8563041
## 886 3819.376 1.453724e-11 3819.376 Square 8563041
## 887 3819.376 1.453724e-11 3819.376 Square 8563041
## 888 3819.376 1.453724e-11 3819.376 Square 8563041
## 889 3819.376 1.453724e-11 3819.376 Square 8563041
## 890 3819.376 1.453724e-11 3819.376 Square 8563041
## 891 3819.376 1.453724e-11 3819.376 Square 8563041
## 892 3819.376 1.453724e-11 3819.376 Square 8563041
## 893 3819.376 1.453724e-11 3819.376 Square 8563041
## 894 3819.376 1.453724e-11 3819.376 Square 8563041
## 895 3819.376 1.453724e-11 3819.376 Square 8563041
## 896 3819.376 1.453724e-11 3819.376 Square 8563041
## 897 3819.376 1.453724e-11 3819.376 Square 8563041
## 898 3819.376 1.453724e-11 3819.376 Square 8563041
## 899 3819.376 1.453724e-11 3819.376 Square 8563041
## 900 3819.376 1.453724e-11 3819.376 Square 8563041
## 901 3819.376 1.453724e-11 3819.376 Square 8563041
## 902 3819.376 1.453724e-11 3819.376 Square 8563041
## 903 3819.376 1.453724e-11 3819.376 Square 8563041
## 904 3819.376 1.453724e-11 3819.376 Square 8563041
## 905 3819.376 1.453724e-11 3819.376 Square 8563041
## 906 3819.376 1.453724e-11 3819.376 Square 8563041
## 907 3819.376 1.453724e-11 3819.376 Square 8563041
## 908 3819.376 1.453724e-11 3819.376 Square 8563041
## 909 3819.376 1.453724e-11 3819.376 Square 8563041
## 910 3819.376 1.453724e-11 3819.376 Square 8563041
## 911 3819.376 1.453724e-11 3819.376 Square 8563041
## 912 3819.376 1.453724e-11 3819.376 Square 8563041
## 913 3819.376 1.453724e-11 3819.376 Square 8563041
## 914 3819.376 1.453724e-11 3819.376 Square 8563041
## 915 3819.376 1.453724e-11 3819.376 Square 8563041
## 916 3819.376 1.453724e-11 3819.376 Square 8563041
## 917 3819.376 1.453724e-11 3819.376 Square 8563041
## 918 3819.376 1.453724e-11 3819.376 Square 8563041
## 919 3819.376 1.453724e-11 3819.376 Square 8563041
## 920 3819.376 1.453724e-11 3819.376 Square 8563041
## 921 3819.376 1.453724e-11 3819.376 Square 8563041
## 922 3819.376 1.453724e-11 3819.376 Square 8563041
## 923 3819.376 1.453724e-11 3819.376 Square 8563041
## 924 3819.376 1.453724e-11 3819.376 Square 8563041
## 925 3819.376 1.453724e-11 3819.376 Square 8563041
## 926 3819.376 1.453724e-11 3819.376 Square 8563041
## 927 3819.376 1.453724e-11 3819.376 Square 8563041
## 928 3819.376 1.453724e-11 3819.376 Square 8563041
## 929 3819.376 1.453724e-11 3819.376 Square 8563041
## 930 3819.376 1.453724e-11 3819.376 Square 8563041
## 931 3819.376 1.453724e-11 3819.376 Square 8563041
## 932 3819.376 1.453724e-11 3819.376 Square 8563041
## 933 3819.376 1.453724e-11 3819.376 Square 8563041
## 934 3819.376 1.453724e-11 3819.376 Square 8563041
## 935 3819.376 1.453724e-11 3819.376 Square 8563041
## 936 3819.376 1.453724e-11 3819.376 Square 8563041
## 937 3819.376 1.453724e-11 3819.376 Square 8563041
## 938 3819.376 1.453724e-11 3819.376 Square 8563041
## 939 3819.376 1.453724e-11 3819.376 Square 8563041
## 940 3819.376 1.453724e-11 3819.376 Square 8563041
## 941 3819.376 1.453724e-11 3819.376 Square 8563041
## 942 3819.376 1.453724e-11 3819.376 Square 8563041
## 943 3819.376 1.453724e-11 3819.376 Square 8563041
## 944 3819.376 1.453724e-11 3819.376 Square 8563041
## 945 3819.376 1.453724e-11 3819.376 Square 8563041
## 946 3819.376 1.453724e-11 3819.376 Square 8563041
## 947 3819.376 1.453724e-11 3819.376 Square 8563041
## 948 3819.376 1.453724e-11 3819.376 Square 8563041
## 949 3819.376 1.453724e-11 3819.376 Square 8563041
## 950 3819.376 1.453724e-11 3819.376 Square 8563041
## 951 3819.376 1.453724e-11 3819.376 Square 8563041
## 952 3819.376 1.453724e-11 3819.376 Square 8563041
## 953 3819.376 1.453724e-11 3819.376 Square 8563041
## 954 3819.376 1.453724e-11 3819.376 Square 8563041
## 955 3819.376 1.453724e-11 3819.376 Square 8563041
## 956 3819.376 1.453724e-11 3819.376 Square 8563041
## 957 3819.376 1.453724e-11 3819.376 Square 8563041
## 958 3819.376 1.453724e-11 3819.376 Square 8563041
## 959 3819.376 1.453724e-11 3819.376 Square 8563041
## 960 3819.376 1.453724e-11 3819.376 Square 8563041
## 961 3819.376 1.453724e-11 3819.376 Square 8563041
## 962 3819.376 1.453724e-11 3819.376 Square 8563041
## 963 3819.376 1.453724e-11 3819.376 Square 8563041
## 964 3819.376 1.453724e-11 3819.376 Square 8563041
## 965 3819.376 1.453724e-11 3819.376 Square 8563041
## 966 3819.376 1.453724e-11 3819.376 Square 8563041
## 967 3819.376 1.453724e-11 3819.376 Square 8563041
## 968 3819.376 1.453724e-11 3819.376 Square 8563041
## 969 3819.376 1.453724e-11 3819.376 Square 8563041
## 970 3819.376 1.453724e-11 3819.376 Square 8563041
## 971 3819.376 1.453724e-11 3819.376 Square 8563041
## 972 3819.376 1.453724e-11 3819.376 Square 8563041
## 973 3819.376 1.453724e-11 3819.376 Square 8563041
## 974 3819.376 1.453724e-11 3819.376 Square 8563041
## 975 3819.376 1.453724e-11 3819.376 Square 8563041
## 976 3819.376 1.453724e-11 3819.376 Square 8563041
## 977 3819.376 1.453724e-11 3819.376 Square 8563041
## 978 3819.376 1.453724e-11 3819.376 Square 8563041
## 979 3819.376 1.453724e-11 3819.376 Square 8563041
## 980 3819.376 1.453724e-11 3819.376 Square 8563041
## 981 3819.376 1.453724e-11 3819.376 Square 8563041
## 982 3819.376 1.453724e-11 3819.376 Square 8563041
## 983 3819.376 1.453724e-11 3819.376 Square 8563041
## 984 3819.376 1.453724e-11 3819.376 Square 8563041
## 985 3819.376 1.453724e-11 3819.376 Square 8563041
## 986 3819.376 1.453724e-11 3819.376 Square 8563041
## 987 3819.376 1.453724e-11 3819.376 Square 8563041
## 988 3819.376 1.453724e-11 3819.376 Square 8563041
## 989 3819.376 1.453724e-11 3819.376 Square 8563041
## 990 3819.376 1.453724e-11 3819.376 Square 8563041
## 991 3819.376 1.453724e-11 3819.376 Square 8563041
## 992 3819.376 1.453724e-11 3819.376 Square 8563041
## 993 3819.376 1.453724e-11 3819.376 Square 8563041
## 994 3819.376 1.453724e-11 3819.376 Square 8563041
## 995 3819.376 1.453724e-11 3819.376 Square 8563041
## 996 3819.376 1.453724e-11 3819.376 Square 8563041
## 997 3819.376 1.453724e-11 3819.376 Square 8563041
## 998 3819.376 1.453724e-11 3819.376 Square 8563041
## 999 3819.376 1.453724e-11 3819.376 Square 8563041
## 1000 3819.376 1.453724e-11 3819.376 Square 8563041
## 1001 3819.376 1.453724e-11 3819.376 Square 8563041
## 1002 3819.376 1.453724e-11 3819.376 Square 8563041
## 1003 3819.376 1.453724e-11 3819.376 Square 8563041
## 1004 3819.376 1.453724e-11 3819.376 Square 8563041
## 1005 3819.376 1.453724e-11 3819.376 Square 8563041
## 1006 3819.376 1.453724e-11 3819.376 Square 8563041
## 1007 3819.376 1.453724e-11 3819.376 Square 8563041
## 1008 3819.376 1.453724e-11 3819.376 Square 8563041
## 1009 3819.376 1.453724e-11 3819.376 Square 8563041
## 1010 3819.376 1.453724e-11 3819.376 Square 8563041
## 1011 3819.376 1.453724e-11 3819.376 Square 8563041
## 1012 3819.376 1.453724e-11 3819.376 Square 8563041
## 1013 3819.376 1.453724e-11 3819.376 Square 8563041
## 1014 3819.376 1.453724e-11 3819.376 Square 8563041
## 1015 3819.376 1.453724e-11 3819.376 Square 8563041
## 1016 3819.376 1.453724e-11 3819.376 Square 8563041
## 1017 3819.376 1.453724e-11 3819.376 Square 8563041
## 1018 3819.376 1.453724e-11 3819.376 Square 8563041
## 1019 3819.376 1.453724e-11 3819.376 Square 8563041
## 1020 3819.376 1.453724e-11 3819.376 Square 8563041
## 1021 3819.376 1.453724e-11 3819.376 Square 8563041
## 1022 3819.376 1.453724e-11 3819.376 Square 8563041
## 1023 3819.376 1.453724e-11 3819.376 Square 8563041
## 1024 3819.376 1.453724e-11 3819.376 Square 8563041
## 1025 3819.376 1.453724e-11 3819.376 Square 8563041
## 1026 3819.376 1.453724e-11 3819.376 Square 8563041
## 1027 3819.376 1.453724e-11 3819.376 Square 8563041
## 1028 3819.376 1.453724e-11 3819.376 Square 8563041
## 1029 3819.376 1.453724e-11 3819.376 Square 8563041
## 1030 3819.376 1.453724e-11 3819.376 Square 8563041
## 1031 3819.376 1.453724e-11 3819.376 Square 8563041
## 1032 3819.376 1.453724e-11 3819.376 Square 8563041
## 1033 3819.376 1.453724e-11 3819.376 Square 8563041
## 1034 3819.376 1.453724e-11 3819.376 Square 8563041
## 1035 3819.376 1.453724e-11 3819.376 Square 8563041
## 1036 3819.376 1.453724e-11 3819.376 Square 8563041
## 1037 3819.376 1.453724e-11 3819.376 Square 8563041
## 1038 3819.376 1.453724e-11 3819.376 Square 8563041
## 1039 3819.376 1.453724e-11 3819.376 Square 8563041
## 1040 3819.376 1.453724e-11 3819.376 Square 8563041
## 1041 3819.376 1.453724e-11 3819.376 Square 8563041
## 1042 3819.376 1.453724e-11 3819.376 Square 8563041
## 1043 3819.376 1.453724e-11 3819.376 Square 8563041
## 1044 3819.376 1.453724e-11 3819.376 Square 8563041
## 1045 3819.376 1.453724e-11 3819.376 Square 8563041
## 1046 3819.376 1.453724e-11 3819.376 Square 8563041
## 1047 3819.376 1.453724e-11 3819.376 Square 8563041
## 1048 3819.376 1.453724e-11 3819.376 Square 8563041
## 1049 3819.376 1.453724e-11 3819.376 Square 8563041
## 1050 3819.376 1.453724e-11 3819.376 Square 8563041
## 1051 3819.376 1.453724e-11 3819.376 Square 8563041
## 1052 3819.376 1.453724e-11 3819.376 Square 8563041
## 1053 3819.376 1.453724e-11 3819.376 Square 8563041
## 1054 3819.376 1.453724e-11 3819.376 Square 8563041
## 1055 3819.376 1.453724e-11 3819.376 Square 8563041
## 1056 3819.376 1.453724e-11 3819.376 Square 8563041
## 1057 3819.376 1.453724e-11 3819.376 Square 8563041
## 1058 3819.376 1.453724e-11 3819.376 Square 8563041
## 1059 3819.376 1.453724e-11 3819.376 Square 8563041
## 1060 3819.376 1.453724e-11 3819.376 Square 8563041
## 1061 3819.376 1.453724e-11 3819.376 Square 8563041
## 1062 3819.376 1.453724e-11 3819.376 Square 8563041
## 1063 3819.376 1.453724e-11 3819.376 Square 8563041
## 1064 3819.376 1.453724e-11 3819.376 Square 8563041
## 1065 3819.376 1.453724e-11 3819.376 Square 8563041
## 1066 3819.376 1.453724e-11 3819.376 Square 8563041
## 1067 3819.376 1.453724e-11 3819.376 Square 8563041
## 1068 3819.376 1.453724e-11 3819.376 Square 8563041
## 1069 3819.376 1.453724e-11 3819.376 Square 8563041
## 1070 3819.376 1.453724e-11 3819.376 Square 8563041
## 1071 3819.376 1.453724e-11 3819.376 Square 8563041
## 1072 3819.376 1.453724e-11 3819.376 Square 8563041
## 1073 3819.376 1.453724e-11 3819.376 Square 8563041
## 1074 3819.376 1.453724e-11 3819.376 Square 8563041
## 1075 3819.376 1.453724e-11 3819.376 Square 8563041
## 1076 3819.376 1.453724e-11 3819.376 Square 8563041
## 1077 3819.376 1.453724e-11 3819.376 Square 8563041
## 1078 3819.376 1.453724e-11 3819.376 Square 8563041
## 1079 3819.376 1.453724e-11 3819.376 Square 8563041
## 1080 3819.376 1.453724e-11 3819.376 Square 8563041
## 1081 3819.376 1.453724e-11 3819.376 Square 8563041
## 1082 3819.376 1.453724e-11 3819.376 Square 8563041
## 1083 3819.376 1.453724e-11 3819.376 Square 8563041
## 1084 3819.376 1.453724e-11 3819.376 Square 8563041
## 1085 3819.376 1.453724e-11 3819.376 Square 8563041
## 1086 3819.376 1.453724e-11 3819.376 Square 8563041
## 1087 3819.376 1.453724e-11 3819.376 Square 8563041
## 1088 3819.376 1.453724e-11 3819.376 Square 8563041
## 1089 3819.376 1.453724e-11 3819.376 Square 8563041
## 1090 3819.376 1.453724e-11 3819.376 Square 8563041
## 1091 3819.376 1.453724e-11 3819.376 Square 8563041
## 1092 3819.376 1.453724e-11 3819.376 Square 8563041
## 1093 3819.376 1.453724e-11 3819.376 Square 8563041
## 1094 3819.376 1.453724e-11 3819.376 Square 8563041
## 1095 3819.376 1.453724e-11 3819.376 Square 8563041
## 1096 3819.376 1.453724e-11 3819.376 Square 8563041
## 1097 3819.376 1.453724e-11 3819.376 Square 8563041
## 1098 3819.376 1.453724e-11 3819.376 Square 8563041
## 1099 3819.376 1.453724e-11 3819.376 Square 8563041
## 1100 3819.376 1.453724e-11 3819.376 Square 8563041
## 1101 3819.376 1.453724e-11 3819.376 Square 8563041
## 1102 3819.376 1.453724e-11 3819.376 Square 8563041
## 1103 3819.376 1.453724e-11 3819.376 Square 8563041
## 1104 3819.376 1.453724e-11 3819.376 Square 8563041
## 1105 3819.376 1.453724e-11 3819.376 Square 8563041
## 1106 3819.376 1.453724e-11 3819.376 Square 8563041
## 1107 3819.376 1.453724e-11 3819.376 Square 8563041
## 1108 3819.376 1.453724e-11 3819.376 Square 8563041
## 1109 3819.376 1.453724e-11 3819.376 Square 8563041
## 1110 3819.376 1.453724e-11 3819.376 Square 8563041
## 1111 3819.376 1.453724e-11 3819.376 Square 8563041
## 1112 3819.376 1.453724e-11 3819.376 Square 8563041
## 1113 3819.376 1.453724e-11 3819.376 Square 8563041
## 1114 3819.376 1.453724e-11 3819.376 Square 8563041
## 1115 3819.376 1.453724e-11 3819.376 Square 8563041
## 1116 3819.376 1.453724e-11 3819.376 Square 8563041
## 1117 3819.376 1.453724e-11 3819.376 Square 8563041
## 1118 3819.376 1.453724e-11 3819.376 Square 8563041
## 1119 3819.376 1.453724e-11 3819.376 Square 8563041
## 1120 3819.376 1.453724e-11 3819.376 Square 8563041
## 1121 3819.376 1.453724e-11 3819.376 Square 8563041
## 1122 3819.376 1.453724e-11 3819.376 Square 8563041
## 1123 3819.376 1.453724e-11 3819.376 Square 8563041
## 1124 3819.376 1.453724e-11 3819.376 Square 8563041
## 1125 3819.376 1.453724e-11 3819.376 Square 8563041
## 1126 3819.376 1.453724e-11 3819.376 Square 8563041
## 1127 3819.376 1.453724e-11 3819.376 Square 8563041
## 1128 3819.376 1.453724e-11 3819.376 Square 8563041
## 1129 3819.376 1.453724e-11 3819.376 Square 8563041
## 1130 3819.376 1.453724e-11 3819.376 Square 8563041
## 1131 3819.376 1.453724e-11 3819.376 Square 8563041
## 1132 3819.376 1.453724e-11 3819.376 Square 8563041
## 1133 3819.376 1.453724e-11 3819.376 Square 8563041
## 1134 3819.376 1.453724e-11 3819.376 Square 8563041
## 1135 3819.376 1.453724e-11 3819.376 Square 8563041
## 1136 3819.376 1.453724e-11 3819.376 Square 8563041
## 1137 3819.376 1.453724e-11 3819.376 Square 8563041
## 1138 3819.376 1.453724e-11 3819.376 Square 8563041
## 1139 3819.376 1.453724e-11 3819.376 Square 8563041
## 1140 3819.376 1.453724e-11 3819.376 Square 8563041
## 1141 3819.376 1.453724e-11 3819.376 Square 8563041
## 1142 3819.376 1.453724e-11 3819.376 Square 8563041
## 1143 3819.376 1.453724e-11 3819.376 Square 8563041
## 1144 3819.376 1.453724e-11 3819.376 Square 8563041
## 1145 3819.376 1.453724e-11 3819.376 Square 8563041
## 1146 3819.376 1.453724e-11 3819.376 Square 8563041
## 1147 3819.376 1.453724e-11 3819.376 Square 8563041
## 1148 3819.376 1.453724e-11 3819.376 Square 8563041
## 1149 3819.376 1.453724e-11 3819.376 Square 8563041
## 1150 3819.376 1.453724e-11 3819.376 Square 8563041
## 1151 3819.376 1.453724e-11 3819.376 Square 8563041
## 1152 3819.376 1.453724e-11 3819.376 Square 8563041
## 1153 3819.376 1.453724e-11 3819.376 Square 8563041
## 1154 3819.376 1.453724e-11 3819.376 Square 8563041
## 1155 3819.376 1.453724e-11 3819.376 Square 8563041
## 1156 3819.376 1.453724e-11 3819.376 Square 8563041
## 1157 3819.376 1.453724e-11 3819.376 Square 8563041
## 1158 3819.376 1.453724e-11 3819.376 Square 8563041
## 1159 3819.376 1.453724e-11 3819.376 Square 8563041
## 1160 3819.376 1.453724e-11 3819.376 Square 8563041
## 1161 3819.376 1.453724e-11 3819.376 Square 8563041
## 1162 3819.376 1.453724e-11 3819.376 Square 8563041
## 1163 3819.376 1.453724e-11 3819.376 Square 8563041
## 1164 3819.376 1.453724e-11 3819.376 Square 8563041
## 1165 3819.376 1.453724e-11 3819.376 Square 8563041
## 1166 3819.376 1.453724e-11 3819.376 Square 8563041
## 1167 3819.376 1.453724e-11 3819.376 Square 8563041
## 1168 3819.376 1.453724e-11 3819.376 Square 8563041
## 1169 3819.376 1.453724e-11 3819.376 Square 8563041
## 1170 3819.376 1.453724e-11 3819.376 Square 8563041
## 1171 3819.376 1.453724e-11 3819.376 Square 8563041
## 1172 3819.376 1.453724e-11 3819.376 Square 8563041
## 1173 3819.376 1.453724e-11 3819.376 Square 8563041
## 1174 3819.376 1.453724e-11 3819.376 Square 8563041
## 1175 3819.376 1.453724e-11 3819.376 Square 8563041
## 1176 3819.376 1.453724e-11 3819.376 Square 8563041
## 1177 3819.376 1.453724e-11 3819.376 Square 8563041
## 1178 3819.376 1.453724e-11 3819.376 Square 8563041
## 1179 3819.376 1.453724e-11 3819.376 Square 8563041
## 1180 3819.376 1.453724e-11 3819.376 Square 8563041
## 1181 3819.376 1.453724e-11 3819.376 Square 8563041
## 1182 3819.376 1.453724e-11 3819.376 Square 8563041
## 1183 3819.376 1.453724e-11 3819.376 Square 8563041
## 1184 3819.376 1.453724e-11 3819.376 Square 8563041
## 1185 3819.376 1.453724e-11 3819.376 Square 8563041
## 1186 3819.376 1.453724e-11 3819.376 Square 8563041
## 1187 3819.376 1.453724e-11 3819.376 Square 8563041
## 1188 3819.376 1.453724e-11 3819.376 Square 8563041
## 1189 3819.376 1.453724e-11 3819.376 Square 8563041
## 1190 3819.376 1.453724e-11 3819.376 Square 8563041
## 1191 3819.376 1.453724e-11 3819.376 Square 8563041
## 1192 3819.376 1.453724e-11 3819.376 Square 8563041
## 1193 3819.376 1.453724e-11 3819.376 Square 8563041
## 1194 3819.376 1.453724e-11 3819.376 Square 8563041
## 1195 3819.376 1.453724e-11 3819.376 Square 8563041
## 1196 3819.376 1.453724e-11 3819.376 Square 8563041
## 1197 3819.376 1.453724e-11 3819.376 Square 8563041
## 1198 3819.376 1.453724e-11 3819.376 Square 8563041
## 1199 3819.376 1.453724e-11 3819.376 Square 8563041
## 1200 3819.376 1.453724e-11 3819.376 Square 8563041
## 1201 3819.376 1.453724e-11 3819.376 Square 8563041
## 1202 3819.376 1.453724e-11 3819.376 Square 8563041
## 1203 3819.376 1.453724e-11 3819.376 Square 8563041
## 1204 3819.376 1.453724e-11 3819.376 Square 8563041
## 1205 3819.376 1.453724e-11 3819.376 Square 8563041
## 1206 3819.376 1.453724e-11 3819.376 Square 8563041
## 1207 3819.376 1.453724e-11 3819.376 Square 8563041
## 1208 3819.376 1.453724e-11 3819.376 Square 8563041
## 1209 3819.376 1.453724e-11 3819.376 Square 8563041
## 1210 3819.376 1.453724e-11 3819.376 Square 8563041
## 1211 3819.376 1.453724e-11 3819.376 Square 8563041
## 1212 3819.376 1.453724e-11 3819.376 Square 8563041
## 1213 3819.376 1.453724e-11 3819.376 Square 8563041
## 1214 3819.376 1.453724e-11 3819.376 Square 8563041
## 1215 3819.376 1.453724e-11 3819.376 Square 8563041
## 1216 3819.376 1.453724e-11 3819.376 Square 8563041
## 1217 3819.376 1.453724e-11 3819.376 Square 8563041
## 1218 3819.376 1.453724e-11 3819.376 Square 8563041
## 1219 3819.376 1.453724e-11 3819.376 Square 8563041
## 1220 3819.376 1.453724e-11 3819.376 Square 8563041
## 1221 3819.376 1.453724e-11 3819.376 Square 8563041
## 1222 3819.376 1.453724e-11 3819.376 Square 8563041
## 1223 3819.376 1.453724e-11 3819.376 Square 8563041
## 1224 3819.376 1.453724e-11 3819.376 Square 8563041
## 1225 3819.376 1.453724e-11 3819.376 Square 8563041
## 1226 3819.376 1.453724e-11 3819.376 Square 8563041
## 1227 3819.376 1.453724e-11 3819.376 Square 8563041
## 1228 3819.376 1.453724e-11 3819.376 Square 8563041
## 1229 3819.376 1.453724e-11 3819.376 Square 8563041
## 1230 3819.376 1.453724e-11 3819.376 Square 8563041
## 1231 3819.376 1.453724e-11 3819.376 Square 8563041
## 1232 3819.376 1.453724e-11 3819.376 Square 8563041
## 1233 3819.376 1.453724e-11 3819.376 Square 8563041
## 1234 3819.376 1.453724e-11 3819.376 Square 8563041
## 1235 3819.376 1.453724e-11 3819.376 Square 8563041
## 1236 3819.376 1.453724e-11 3819.376 Square 8563041
## 1237 3819.376 1.453724e-11 3819.376 Square 8563041
## 1238 3819.376 1.453724e-11 3819.376 Square 8563041
## 1239 3819.376 1.453724e-11 3819.376 Square 8563041
## 1240 3819.376 1.453724e-11 3819.376 Square 8563041
## 1241 3819.376 1.453724e-11 3819.376 Square 8563041
## 1242 3819.376 1.453724e-11 3819.376 Square 8563041
## 1243 3819.376 1.453724e-11 3819.376 Square 8563041
## 1244 3819.376 1.453724e-11 3819.376 Square 8563041
## 1245 3819.376 1.453724e-11 3819.376 Square 8563041
## 1246 3819.376 1.453724e-11 3819.376 Square 8563041
## 1247 3819.376 1.453724e-11 3819.376 Square 8563041
## 1248 3819.376 1.453724e-11 3819.376 Square 8563041
## 1249 3819.376 1.453724e-11 3819.376 Square 8563041
## 1250 3819.376 1.453724e-11 3819.376 Square 8563041
## 1251 3819.376 1.453724e-11 3819.376 Square 8563041
## 1252 3819.376 1.453724e-11 3819.376 Square 8563041
## 1253 3819.376 1.453724e-11 3819.376 Square 8563041
## 1254 3819.376 1.453724e-11 3819.376 Square 8563041
## 1255 3819.376 1.453724e-11 3819.376 Square 8563041
## 1256 3819.376 1.453724e-11 3819.376 Square 8563041
## 1257 3819.376 1.453724e-11 3819.376 Square 8563041
## 1258 3819.376 1.453724e-11 3819.376 Square 8563041
## 1259 3819.376 1.453724e-11 3819.376 Square 8563041
## 1260 3819.376 1.453724e-11 3819.376 Square 8563041
## 1261 3819.376 1.453724e-11 3819.376 Square 8563041
## 1262 3819.376 1.453724e-11 3819.376 Square 8563041
## 1263 3819.376 1.453724e-11 3819.376 Square 8563041
## 1264 3819.376 1.453724e-11 3819.376 Square 8563041
## 1265 3819.376 1.453724e-11 3819.376 Square 8563041
## 1266 3819.376 1.453724e-11 3819.376 Square 8563041
## 1267 3819.376 1.453724e-11 3819.376 Square 8563041
## 1268 3819.376 1.453724e-11 3819.376 Square 8563041
## 1269 3819.376 1.453724e-11 3819.376 Square 8563041
## 1270 3819.376 1.453724e-11 3819.376 Square 8563041
## 1271 3819.376 1.453724e-11 3819.376 Square 8563041
## 1272 3819.376 1.453724e-11 3819.376 Square 8563041
## 1273 3819.376 1.453724e-11 3819.376 Square 8563041
## 1274 3819.376 1.453724e-11 3819.376 Square 8563041
## 1275 3819.376 1.453724e-11 3819.376 Square 8563041
## 1276 3819.376 1.453724e-11 3819.376 Square 8563041
## 1277 3819.376 1.453724e-11 3819.376 Square 8563041
## 1278 3819.376 1.453724e-11 3819.376 Square 8563041
## 1279 3819.376 1.453724e-11 3819.376 Square 8563041
## 1280 3819.376 1.453724e-11 3819.376 Square 8563041
## 1281 3819.376 1.453724e-11 3819.376 Square 8563041
## 1282 3819.376 1.453724e-11 3819.376 Square 8563041
## 1283 3819.376 1.453724e-11 3819.376 Square 8563041
## 1284 3819.376 1.453724e-11 3819.376 Square 8563041
## 1285 3819.376 1.453724e-11 3819.376 Square 8563041
## 1286 3819.376 1.453724e-11 3819.376 Square 8563041
## 1287 3819.376 1.453724e-11 3819.376 Square 8563041
## 1288 3819.376 1.453724e-11 3819.376 Square 8563041
## 1289 3819.376 1.453724e-11 3819.376 Square 8563041
## 1290 3819.376 1.453724e-11 3819.376 Square 8563041
## 1291 3819.376 1.453724e-11 3819.376 Square 8563041
## 1292 3819.376 1.453724e-11 3819.376 Square 8563041
## 1293 3819.376 1.453724e-11 3819.376 Square 8563041
## 1294 3819.376 1.453724e-11 3819.376 Square 8563041
## 1295 3819.376 1.453724e-11 3819.376 Square 8563041
## 1296 3819.376 1.453724e-11 3819.376 Square 8563041
## 1297 3819.376 1.453724e-11 3819.376 Square 8563041
## 1298 3819.376 1.453724e-11 3819.376 Square 8563041
## 1299 3819.376 1.453724e-11 3819.376 Square 8563041
## 1300 3819.376 1.453724e-11 3819.376 Square 8563041
## 1301 3819.376 1.453724e-11 3819.376 Square 8563041
## 1302 3819.376 1.453724e-11 3819.376 Square 8563041
## 1303 3819.376 1.453724e-11 3819.376 Square 8563041
## 1304 3819.376 1.453724e-11 3819.376 Square 8563041
## 1305 3819.376 1.453724e-11 3819.376 Square 8563041
## 1306 3819.376 1.453724e-11 3819.376 Square 8563041
## 1307 3819.376 1.453724e-11 3819.376 Square 8563041
## 1308 3819.376 1.453724e-11 3819.376 Square 8563041
## 1309 3819.376 1.453724e-11 3819.376 Square 8563041
## 1310 3819.376 1.453724e-11 3819.376 Square 8563041
## 1311 3819.376 1.453724e-11 3819.376 Square 8563041
## 1312 3819.376 1.453724e-11 3819.376 Square 8563041
## 1313 3819.376 1.453724e-11 3819.376 Square 8563041
## 1314 3819.376 1.453724e-11 3819.376 Square 8563041
## 1315 3819.376 1.453724e-11 3819.376 Square 8563041
## 1316 3819.376 1.453724e-11 3819.376 Square 8563041
## 1317 3819.376 1.453724e-11 3819.376 Square 8563041
## 1318 3819.376 1.453724e-11 3819.376 Square 8563041
## 1319 3819.376 1.453724e-11 3819.376 Square 8563041
## 1320 3819.376 1.453724e-11 3819.376 Square 8563041
## 1321 3819.376 1.453724e-11 3819.376 Square 8563041
## 1322 3819.376 1.453724e-11 3819.376 Square 8563041
## 1323 3819.376 1.453724e-11 3819.376 Square 8563041
## 1324 3819.376 1.453724e-11 3819.376 Square 8563041
## 1325 3819.376 1.453724e-11 3819.376 Square 8563041
## 1326 3819.376 1.453724e-11 3819.376 Square 8563041
## 1327 3819.376 1.453724e-11 3819.376 Square 8563041
## 1328 3819.376 1.453724e-11 3819.376 Square 8563041
## 1329 3819.376 1.453724e-11 3819.376 Square 8563041
## 1330 3819.376 1.453724e-11 3819.376 Square 8563041
## 1331 3819.376 1.453724e-11 3819.376 Square 8563041
## 1332 3819.376 1.453724e-11 3819.376 Square 8563041
## 1333 3819.376 1.453724e-11 3819.376 Square 8563041
## 1334 3819.376 1.453724e-11 3819.376 Square 8563041
## 1335 3819.376 1.453724e-11 3819.376 Square 8563041
## 1336 3819.376 1.453724e-11 3819.376 Square 8563041
## 1337 3819.376 1.453724e-11 3819.376 Square 8563041
## 1338 3819.376 1.453724e-11 3819.376 Square 8563041
## 1339 3819.376 1.453724e-11 3819.376 Square 8563041
## 1340 3819.376 1.453724e-11 3819.376 Square 8563041
## 1341 3819.376 1.453724e-11 3819.376 Square 8563041
## 1342 3819.376 1.453724e-11 3819.376 Square 8563041
## 1343 3819.376 1.453724e-11 3819.376 Square 8563041
## 1344 3819.376 1.453724e-11 3819.376 Square 8563041
## 1345 3819.376 1.453724e-11 3819.376 Square 8563041
## 1346 3819.376 1.453724e-11 3819.376 Square 8563041
## 1347 3819.376 1.453724e-11 3819.376 Square 8563041
## 1348 3819.376 1.453724e-11 3819.376 Square 8563041
## 1349 3819.376 1.453724e-11 3819.376 Square 8563041
## 1350 3819.376 1.453724e-11 3819.376 Square 8563041
## 1351 3819.376 1.453724e-11 3819.376 Square 8563041
## 1352 3819.376 1.453724e-11 3819.376 Square 8563041
## 1353 3819.376 1.453724e-11 3819.376 Square 8563041
## 1354 3819.376 1.453724e-11 3819.376 Square 8563041
## 1355 3819.376 1.453724e-11 3819.376 Square 8563041
## 1356 3819.376 1.453724e-11 3819.376 Square 8563041
## 1357 3819.376 1.453724e-11 3819.376 Square 8563041
## 1358 3819.376 1.453724e-11 3819.376 Square 8563041
## 1359 3819.376 1.453724e-11 3819.376 Square 8563041
## 1360 3819.376 1.453724e-11 3819.376 Square 8563041
## 1361 3819.376 1.453724e-11 3819.376 Square 8563041
## 1362 3819.376 1.453724e-11 3819.376 Square 8563041
## 1363 3819.376 1.453724e-11 3819.376 Square 8563041
## 1364 3819.376 1.453724e-11 3819.376 Square 8563041
## 1365 3819.376 1.453724e-11 3819.376 Square 8563041
## 1366 3819.376 1.453724e-11 3819.376 Square 8563041
## 1367 3819.376 1.453724e-11 3819.376 Square 8563041
## 1368 3819.376 1.453724e-11 3819.376 Square 8563041
## 1369 3819.376 1.453724e-11 3819.376 Square 8563041
## 1370 3819.376 1.453724e-11 3819.376 Square 8563041
## 1371 3819.376 1.453724e-11 3819.376 Square 8563041
## 1372 3819.376 1.453724e-11 3819.376 Square 8563041
## 1373 3819.376 1.453724e-11 3819.376 Square 8563041
## 1374 3819.376 1.453724e-11 3819.376 Square 8563041
## 1375 3819.376 1.453724e-11 3819.376 Square 8563041
## 1376 3819.376 1.453724e-11 3819.376 Square 8563041
## 1377 3819.376 1.453724e-11 3819.376 Square 8563041
## 1378 3819.376 1.453724e-11 3819.376 Square 8563041
## 1379 3819.376 1.453724e-11 3819.376 Square 8563041
## 1380 3819.376 1.453724e-11 3819.376 Square 8563041
## 1381 3819.376 1.453724e-11 3819.376 Square 8563041
## 1382 3819.376 1.453724e-11 3819.376 Square 8563041
## 1383 3819.376 1.453724e-11 3819.376 Square 8563041
## 1384 3819.376 1.453724e-11 3819.376 Square 8563041
## 1385 3819.376 1.453724e-11 3819.376 Square 8563041
## 1386 3819.376 1.453724e-11 3819.376 Square 8563041
## 1387 3819.376 1.453724e-11 3819.376 Square 8563041
## 1388 3819.376 1.453724e-11 3819.376 Square 8563041
## 1389 3819.376 1.453724e-11 3819.376 Square 8563041
## 1390 3819.376 1.453724e-11 3819.376 Square 8563041
## 1391 3819.376 1.453724e-11 3819.376 Square 8563041
## 1392 3819.376 1.453724e-11 3819.376 Square 8563041
## 1393 3819.376 1.453724e-11 3819.376 Square 8563041
## 1394 3819.376 1.453724e-11 3819.376 Square 8563041
## 1395 3819.376 1.453724e-11 3819.376 Square 8563041
## 1396 3819.376 1.453724e-11 3819.376 Square 8563041
## 1397 3819.376 1.453724e-11 3819.376 Square 8563041
## 1398 3819.376 1.453724e-11 3819.376 Square 8563041
## 1399 3819.376 1.453724e-11 3819.376 Square 8563041
## 1400 3819.376 1.453724e-11 3819.376 Square 8563041
## 1401 3819.376 1.453724e-11 3819.376 Square 8563041
## 1402 3819.376 1.453724e-11 3819.376 Square 8563041
## 1403 3819.376 1.453724e-11 3819.376 Square 8563041
## 1404 3819.376 1.453724e-11 3819.376 Square 8563041
## 1405 3819.376 1.453724e-11 3819.376 Square 8563041
## 1406 3819.376 1.453724e-11 3819.376 Square 8563041
## 1407 3819.376 1.453724e-11 3819.376 Square 8563041
## 1408 3819.376 1.453724e-11 3819.376 Square 8563041
## 1409 3819.376 1.453724e-11 3819.376 Square 8563041
## 1410 3819.376 1.453724e-11 3819.376 Square 8563041
## 1411 3819.376 1.453724e-11 3819.376 Square 8563041
## 1412 3819.376 1.453724e-11 3819.376 Square 8563041
## 1413 3819.376 1.453724e-11 3819.376 Square 8563041
## 1414 3819.376 1.453724e-11 3819.376 Square 8563041
## 1415 3819.376 1.453724e-11 3819.376 Square 8563041
## 1416 3819.376 1.453724e-11 3819.376 Square 8563041
## 1417 3819.376 1.453724e-11 3819.376 Square 8563041
## 1418 3819.376 1.453724e-11 3819.376 Square 8563041
## 1419 3819.376 1.453724e-11 3819.376 Square 8563041
## 1420 3819.376 1.453724e-11 3819.376 Square 8563041
## 1421 3819.376 1.453724e-11 3819.376 Square 8563041
## 1422 3819.376 1.453724e-11 3819.376 Square 8563041
## 1423 3819.376 1.453724e-11 3819.376 Square 8563041
## 1424 3819.376 1.453724e-11 3819.376 Square 8563041
## 1425 3819.376 1.453724e-11 3819.376 Square 8563041
## 1426 3819.376 1.453724e-11 3819.376 Square 8563041
## 1427 3819.376 1.453724e-11 3819.376 Square 8563041
## 1428 3819.376 1.453724e-11 3819.376 Square 8563041
## 1429 3819.376 1.453724e-11 3819.376 Square 8563041
## 1430 3819.376 1.453724e-11 3819.376 Square 8563041
## 1431 3819.376 1.453724e-11 3819.376 Square 8563041
## 1432 3819.376 1.453724e-11 3819.376 Square 8563041
## 1433 3819.376 1.453724e-11 3819.376 Square 8563041
## 1434 3819.376 1.453724e-11 3819.376 Square 8563041
## 1435 3819.376 1.453724e-11 3819.376 Square 8563041
## 1436 3819.376 1.453724e-11 3819.376 Square 8563041
## 1437 3819.376 1.453724e-11 3819.376 Square 8563041
## 1438 3819.376 1.453724e-11 3819.376 Square 8563041
## 1439 3819.376 1.453724e-11 3819.376 Square 8563041
## 1440 3819.376 1.453724e-11 3819.376 Square 8563041
## 1441 3819.376 1.453724e-11 3819.376 Square 8563041
## 1442 3819.376 1.453724e-11 3819.376 Square 8563041
## 1443 3819.376 1.453724e-11 3819.376 Square 8563041
## 1444 3819.376 1.453724e-11 3819.376 Square 8563041
## 1445 3819.376 1.453724e-11 3819.376 Square 8563041
## 1446 3819.376 1.453724e-11 3819.376 Square 8563041
## 1447 3819.376 1.453724e-11 3819.376 Square 8563041
## 1448 3819.376 1.453724e-11 3819.376 Square 8563041
## 1449 3819.376 1.453724e-11 3819.376 Square 8563041
## 1450 3819.376 1.453724e-11 3819.376 Square 8563041
## 1451 3819.376 1.453724e-11 3819.376 Square 8563041
## 1452 3819.376 1.453724e-11 3819.376 Square 8563041
## 1453 3819.376 1.453724e-11 3819.376 Square 8563041
## 1454 3819.376 1.453724e-11 3819.376 Square 8563041
## 1455 3819.376 1.453724e-11 3819.376 Square 8563041
## 1456 3819.376 1.453724e-11 3819.376 Square 8563041
## 1457 3819.376 1.453724e-11 3819.376 Square 8563041
## 1458 3819.376 1.453724e-11 3819.376 Square 8563041
## 1459 3819.376 1.453724e-11 3819.376 Square 8563041
## 1460 3819.376 1.453724e-11 3819.376 Square 8563041
## 1461 3819.376 1.453724e-11 3819.376 Square 8563041
## 1462 3819.376 1.453724e-11 3819.376 Square 8563041
## 1463 3819.376 1.453724e-11 3819.376 Square 8563041
## 1464 3819.376 1.453724e-11 3819.376 Square 8563041
## 1465 3819.376 1.453724e-11 3819.376 Square 8563041
## 1466 3819.376 1.453724e-11 3819.376 Square 8563041
## 1467 3819.376 1.453724e-11 3819.376 Square 8563041
## 1468 3819.376 1.453724e-11 3819.376 Square 8563041
## 1469 3819.376 1.453724e-11 3819.376 Square 8563041
## 1470 3819.376 1.453724e-11 3819.376 Square 8563041
## 1471 3819.376 1.453724e-11 3819.376 Square 8563041
## 1472 3819.376 1.453724e-11 3819.376 Square 8563041
## 1473 3819.376 1.453724e-11 3819.376 Square 8563041
## 1474 3819.376 1.453724e-11 3819.376 Square 8563041
## 1475 3819.376 1.453724e-11 3819.376 Square 8563041
## 1476 3819.376 1.453724e-11 3819.376 Square 8563041
## 1477 3819.376 1.453724e-11 3819.376 Square 8563041
## 1478 3819.376 1.453724e-11 3819.376 Square 8563041
## 1479 3819.376 1.453724e-11 3819.376 Square 8563041
## 1480 3819.376 1.453724e-11 3819.376 Square 8563041
## 1481 3819.376 1.453724e-11 3819.376 Square 8563041
## 1482 3819.376 1.453724e-11 3819.376 Square 8563041
## 1483 3819.376 1.453724e-11 3819.376 Square 8563041
## 1484 3819.376 1.453724e-11 3819.376 Square 8563041
## 1485 3819.376 1.453724e-11 3819.376 Square 8563041
## 1486 3819.376 1.453724e-11 3819.376 Square 8563041
## 1487 3819.376 1.453724e-11 3819.376 Square 8563041
## 1488 3819.376 1.453724e-11 3819.376 Square 8563041
## 1489 3819.376 1.453724e-11 3819.376 Square 8563041
## 1490 3819.376 1.453724e-11 3819.376 Square 8563041
## 1491 3819.376 1.453724e-11 3819.376 Square 8563041
## 1492 3819.376 1.453724e-11 3819.376 Square 8563041
## 1493 3819.376 1.453724e-11 3819.376 Square 8563041
## 1494 3819.376 1.453724e-11 3819.376 Square 8563041
## 1495 3819.376 1.453724e-11 3819.376 Square 8563041
## 1496 3819.376 1.453724e-11 3819.376 Square 8563041
## 1497 3819.376 1.453724e-11 3819.376 Square 8563041
## 1498 3819.376 1.453724e-11 3819.376 Square 8563041
## 1499 3819.376 1.453724e-11 3819.376 Square 8563041
## 1500 3819.376 1.453724e-11 3819.376 Square 8563041
## 1501 3819.376 1.453724e-11 3819.376 Square 8563041
## 1502 3819.376 1.453724e-11 3819.376 Square 8563041
## 1503 3819.376 1.453724e-11 3819.376 Square 8563041
## 1504 3819.376 1.453724e-11 3819.376 Square 8563041
## 1505 3819.376 1.453724e-11 3819.376 Square 8563041
## 1506 3819.376 1.453724e-11 3819.376 Square 8563041
## 1507 3819.376 1.453724e-11 3819.376 Square 8563041
## 1508 3819.376 1.453724e-11 3819.376 Square 8563041
## 1509 3819.376 1.453724e-11 3819.376 Square 8563041
## 1510 3819.376 1.453724e-11 3819.376 Square 8563041
## 1511 3819.376 1.453724e-11 3819.376 Square 8563041
## 1512 3819.376 1.453724e-11 3819.376 Square 8563041
## 1513 3819.376 1.453724e-11 3819.376 Square 8563041
## 1514 3819.376 1.453724e-11 3819.376 Square 8563041
## 1515 3819.376 1.453724e-11 3819.376 Square 8563041
## 1516 3819.376 1.453724e-11 3819.376 Square 8563041
## 1517 3819.376 1.453724e-11 3819.376 Square 8563041
## 1518 3819.376 1.453724e-11 3819.376 Square 8563041
## 1519 3819.376 1.453724e-11 3819.376 Square 8563041
## 1520 3819.376 1.453724e-11 3819.376 Square 8563041
## 1521 3819.376 1.453724e-11 3819.376 Square 8563041
## 1522 3819.376 1.453724e-11 3819.376 Square 8563041
## 1523 3819.376 1.453724e-11 3819.376 Square 8563041
## 1524 3819.376 1.453724e-11 3819.376 Square 8563041
## 1525 3819.376 1.453724e-11 3819.376 Square 8563041
## 1526 3819.376 1.453724e-11 3819.376 Square 8563041
## 1527 3819.376 1.453724e-11 3819.376 Square 8563041
## 1528 3819.376 1.453724e-11 3819.376 Square 8563041
## 1529 3819.376 1.453724e-11 3819.376 Square 8563041
## 1530 3819.376 1.453724e-11 3819.376 Square 8563041
## 1531 3819.376 1.453724e-11 3819.376 Square 8563041
## 1532 3819.376 1.453724e-11 3819.376 Square 8563041
## 1533 3819.376 1.453724e-11 3819.376 Square 8563041
## 1534 3819.376 1.453724e-11 3819.376 Square 8563041
## 1535 3819.376 1.453724e-11 3819.376 Square 8563041
## 1536 3819.376 1.453724e-11 3819.376 Square 8563041
## 1537 3819.376 1.453724e-11 3819.376 Square 8563041
## 1538 3819.376 1.453724e-11 3819.376 Square 8563041
## 1539 3819.376 1.453724e-11 3819.376 Square 8563041
## 1540 3819.376 1.453724e-11 3819.376 Square 8563041
## 1541 3819.376 1.453724e-11 3819.376 Square 8563041
## 1542 3819.376 1.453724e-11 3819.376 Square 8563041
## 1543 3819.376 1.453724e-11 3819.376 Square 8563041
## 1544 3819.376 1.453724e-11 3819.376 Square 8563041
## 1545 3819.376 1.453724e-11 3819.376 Square 8563041
## 1546 3819.376 1.453724e-11 3819.376 Square 8563041
## 1547 3819.376 1.453724e-11 3819.376 Square 8563041
## 1548 3819.376 1.453724e-11 3819.376 Square 8563041
## 1549 3819.376 1.453724e-11 3819.376 Square 8563041
## 1550 3819.376 1.453724e-11 3819.376 Square 8563041
## 1551 3819.376 1.453724e-11 3819.376 Square 8563041
## 1552 3819.376 1.453724e-11 3819.376 Square 8563041
## 1553 3819.376 1.453724e-11 3819.376 Square 8563041
## 1554 3819.376 1.453724e-11 3819.376 Square 8563041
## 1555 3819.376 1.453724e-11 3819.376 Square 8563041
## 1556 3819.376 1.453724e-11 3819.376 Square 8563041
## 1557 3819.376 1.453724e-11 3819.376 Square 8563041
## 1558 3819.376 1.453724e-11 3819.376 Square 8563041
## 1559 3819.376 1.453724e-11 3819.376 Square 8563041
## 1560 3819.376 1.453724e-11 3819.376 Square 8563041
## 1561 3819.376 1.453724e-11 3819.376 Square 8563041
## 1562 3819.376 1.453724e-11 3819.376 Square 8563041
## 1563 3819.376 1.453724e-11 3819.376 Square 8563041
## 1564 3819.376 1.453724e-11 3819.376 Square 8563041
## 1565 3819.376 1.453724e-11 3819.376 Square 8563041
## 1566 3819.376 1.453724e-11 3819.376 Square 8563041
## 1567 3819.376 1.453724e-11 3819.376 Square 8563041
## 1568 3819.376 1.453724e-11 3819.376 Square 8563041
## 1569 3819.376 1.453724e-11 3819.376 Square 8563041
## 1570 3819.376 1.453724e-11 3819.376 Square 8563041
## 1571 3819.376 1.453724e-11 3819.376 Square 8563041
## 1572 3819.376 1.453724e-11 3819.376 Square 8563041
## 1573 3819.376 1.453724e-11 3819.376 Square 8563041
## 1574 3819.376 1.453724e-11 3819.376 Square 8563041
## 1575 3819.376 1.453724e-11 3819.376 Square 8563041
## 1576 3819.376 1.453724e-11 3819.376 Square 8563041
## 1577 3819.376 1.453724e-11 3819.376 Square 8563041
## 1578 3819.376 1.453724e-11 3819.376 Square 8563041
## 1579 3819.376 1.453724e-11 3819.376 Square 8563041
## 1580 3819.376 1.453724e-11 3819.376 Square 8563041
## 1581 3819.376 1.453724e-11 3819.376 Square 8563041
## 1582 3819.376 1.453724e-11 3819.376 Square 8563041
## 1583 3819.376 1.453724e-11 3819.376 Square 8563041
## 1584 3819.376 1.453724e-11 3819.376 Square 8563041
## 1585 3819.376 1.453724e-11 3819.376 Square 8563041
## 1586 3819.376 1.453724e-11 3819.376 Square 8563041
## 1587 3819.376 1.453724e-11 3819.376 Square 8563041
## 1588 3819.376 1.453724e-11 3819.376 Square 8563041
## 1589 3819.376 1.453724e-11 3819.376 Square 8563041
## 1590 3819.376 1.453724e-11 3819.376 Square 8563041
## 1591 3819.376 1.453724e-11 3819.376 Square 8563041
## 1592 3819.376 1.453724e-11 3819.376 Square 8563041
## 1593 3819.376 1.453724e-11 3819.376 Square 8563041
## 1594 3819.376 1.453724e-11 3819.376 Square 8563041
## 1595 3819.376 1.453724e-11 3819.376 Square 8563041
## 1596 3819.376 1.453724e-11 3819.376 Square 8563041
## 1597 3819.376 1.453724e-11 3819.376 Square 8563041
## 1598 3819.376 1.453724e-11 3819.376 Square 8563041
## 1599 3819.376 1.453724e-11 3819.376 Square 8563041
## 1600 3819.376 1.453724e-11 3819.376 Square 8563041
## 1601 3819.376 1.453724e-11 3819.376 Square 8563041
## 1602 3819.376 1.453724e-11 3819.376 Square 8563041
## 1603 3819.376 1.453724e-11 3819.376 Square 8563041
## 1604 3819.376 1.453724e-11 3819.376 Square 8563041
## 1605 3819.376 1.453724e-11 3819.376 Square 8563041
## 1606 3819.376 1.453724e-11 3819.376 Square 8563041
## 1607 3819.376 1.453724e-11 3819.376 Square 8563041
## 1608 3819.376 1.453724e-11 3819.376 Square 8563041
## 1609 3819.376 1.453724e-11 3819.376 Square 8563041
## 1610 3819.376 1.453724e-11 3819.376 Square 8563041
## 1611 3819.376 1.453724e-11 3819.376 Square 8563041
## 1612 3819.376 1.453724e-11 3819.376 Square 8563041
## 1613 3819.376 1.453724e-11 3819.376 Square 8563041
## 1614 3819.376 1.453724e-11 3819.376 Square 8563041
## 1615 3819.376 1.453724e-11 3819.376 Square 8563041
## 1616 3819.376 1.453724e-11 3819.376 Square 8563041
## 1617 3819.376 1.453724e-11 3819.376 Square 8563041
## 1618 3819.376 1.453724e-11 3819.376 Square 8563041
## 1619 3819.376 1.453724e-11 3819.376 Square 8563041
## 1620 3819.376 1.453724e-11 3819.376 Square 8563041
## 1621 3819.376 1.453724e-11 3819.376 Square 8563041
## 1622 3819.376 1.453724e-11 3819.376 Square 8563041
## 1623 3819.376 1.453724e-11 3819.376 Square 8563041
## 1624 3819.376 1.453724e-11 3819.376 Square 8563041
## 1625 3819.376 1.453724e-11 3819.376 Square 8563041
## 1626 3819.376 1.453724e-11 3819.376 Square 8563041
## 1627 3819.376 1.453724e-11 3819.376 Square 8563041
## 1628 3819.376 1.453724e-11 3819.376 Square 8563041
## 1629 3819.376 1.453724e-11 3819.376 Square 8563041
## 1630 3819.376 1.453724e-11 3819.376 Square 8563041
## 1631 3819.376 1.453724e-11 3819.376 Square 8563041
## 1632 3819.376 1.453724e-11 3819.376 Square 8563041
## 1633 3819.376 1.453724e-11 3819.376 Square 8563041
## 1634 3819.376 1.453724e-11 3819.376 Square 8563041
## 1635 3819.376 1.453724e-11 3819.376 Square 8563041
## 1636 3819.376 1.453724e-11 3819.376 Square 8563041
## 1637 3819.376 1.453724e-11 3819.376 Square 8563041
## 1638 3819.376 1.453724e-11 3819.376 Square 8563041
## 1639 3819.376 1.453724e-11 3819.376 Square 8563041
## 1640 3819.376 1.453724e-11 3819.376 Square 8563041
## 1641 3819.376 1.453724e-11 3819.376 Square 8563041
## 1642 3819.376 1.453724e-11 3819.376 Square 8563041
## 1643 3819.376 1.453724e-11 3819.376 Square 8563041
## 1644 3819.376 1.453724e-11 3819.376 Square 8563041
## 1645 3819.376 1.453724e-11 3819.376 Square 8563041
## 1646 3819.376 1.453724e-11 3819.376 Square 8563041
## 1647 3819.376 1.453724e-11 3819.376 Square 8563041
## 1648 3819.376 1.453724e-11 3819.376 Square 8563041
## 1649 3819.376 1.453724e-11 3819.376 Square 8563041
## 1650 3819.376 1.453724e-11 3819.376 Square 8563041
## 1651 3819.376 1.453724e-11 3819.376 Square 8563041
## 1652 3819.376 1.453724e-11 3819.376 Square 8563041
## 1653 3819.376 1.453724e-11 3819.376 Square 8563041
## 1654 3819.376 1.453724e-11 3819.376 Square 8563041
## 1655 3819.376 1.453724e-11 3819.376 Square 8563041
## 1656 3819.376 1.453724e-11 3819.376 Square 8563041
## 1657 3819.376 1.453724e-11 3819.376 Square 8563041
## 1658 3819.376 1.453724e-11 3819.376 Square 8563041
## 1659 3819.376 1.453724e-11 3819.376 Square 8563041
## 1660 3819.376 1.453724e-11 3819.376 Square 8563041
## 1661 3819.376 1.453724e-11 3819.376 Square 8563041
## 1662 3819.376 1.453724e-11 3819.376 Square 8563041
## 1663 3819.376 1.453724e-11 3819.376 Square 8563041
## 1664 3819.376 1.453724e-11 3819.376 Square 8563041
## 1665 3819.376 1.453724e-11 3819.376 Square 8563041
## 1666 3819.376 1.453724e-11 3819.376 Square 8563041
## 1667 3819.376 1.453724e-11 3819.376 Square 8563041
## 1668 3819.376 1.453724e-11 3819.376 Square 8563041
## 1669 3819.376 1.453724e-11 3819.376 Square 8563041
## 1670 3819.376 1.453724e-11 3819.376 Square 8563041
## 1671 3819.376 1.453724e-11 3819.376 Square 8563041
## 1672 3819.376 1.453724e-11 3819.376 Square 8563041
## 1673 3819.376 1.453724e-11 3819.376 Square 8563041
## 1674 3819.376 1.453724e-11 3819.376 Square 8563041
## 1675 3819.376 1.453724e-11 3819.376 Square 8563041
## 1676 3819.376 1.453724e-11 3819.376 Square 8563041
## 1677 3819.376 1.453724e-11 3819.376 Square 8563041
## 1678 3819.376 1.453724e-11 3819.376 Square 8563041
## 1679 3819.376 1.453724e-11 3819.376 Square 8563041
## 1680 3819.376 1.453724e-11 3819.376 Square 8563041
## 1681 3819.376 1.453724e-11 3819.376 Square 8563041
## 1682 3819.376 1.453724e-11 3819.376 Square 8563041
## 1683 3819.376 1.453724e-11 3819.376 Square 8563041
## 1684 3819.376 1.453724e-11 3819.376 Square 8563041
## 1685 3819.376 1.453724e-11 3819.376 Square 8563041
## 1686 3819.376 1.453724e-11 3819.376 Square 8563041
## 1687 3819.376 1.453724e-11 3819.376 Square 8563041
## 1688 3819.376 1.453724e-11 3819.376 Square 8563041
## 1689 3819.376 1.453724e-11 3819.376 Square 8563041
## 1690 3819.376 1.453724e-11 3819.376 Square 8563041
## 1691 3819.376 1.453724e-11 3819.376 Square 8563041
## 1692 3819.376 1.453724e-11 3819.376 Square 8563041
## 1693 3819.376 1.453724e-11 3819.376 Square 8563041
## 1694 3819.376 1.453724e-11 3819.376 Square 8563041
## 1695 3819.376 1.453724e-11 3819.376 Square 8563041
## 1696 3819.376 1.453724e-11 3819.376 Square 8563041
## 1697 3819.376 1.453724e-11 3819.376 Square 8563041
## 1698 3819.376 1.453724e-11 3819.376 Square 8563041
## 1699 3819.376 1.453724e-11 3819.376 Square 8563041
## 1700 3819.376 1.453724e-11 3819.376 Square 8563041
## 1701 3819.376 1.453724e-11 3819.376 Square 8563041
## 1702 3819.376 1.453724e-11 3819.376 Square 8563041
## 1703 3819.376 1.453724e-11 3819.376 Square 8563041
## 1704 3819.376 1.453724e-11 3819.376 Square 8563041
## 1705 3819.376 1.453724e-11 3819.376 Square 8563041
## 1706 3819.376 1.453724e-11 3819.376 Square 8563041
## 1707 3819.376 1.453724e-11 3819.376 Square 8563041
## 1708 3819.376 1.453724e-11 3819.376 Square 8563041
## 1709 3819.376 1.453724e-11 3819.376 Square 8563041
## 1710 3819.376 1.453724e-11 3819.376 Square 8563041
## 1711 3819.376 1.453724e-11 3819.376 Square 8563041
## 1712 3819.376 1.453724e-11 3819.376 Square 8563041
## 1713 3819.376 1.453724e-11 3819.376 Square 8563041
## 1714 3819.376 1.453724e-11 3819.376 Square 8563041
## 1715 3819.376 1.453724e-11 3819.376 Square 8563041
## 1716 3819.376 1.453724e-11 3819.376 Square 8563041
## 1717 3819.376 1.453724e-11 3819.376 Square 8563041
## 1718 3819.376 1.453724e-11 3819.376 Square 8563041
## 1719 3819.376 1.453724e-11 3819.376 Square 8563041
## 1720 3819.376 1.453724e-11 3819.376 Square 8563041
## 1721 3819.376 1.453724e-11 3819.376 Square 8563041
## 1722 3819.376 1.453724e-11 3819.376 Square 8563041
## 1723 3819.376 1.453724e-11 3819.376 Square 8563041
## 1724 3819.376 1.453724e-11 3819.376 Square 8563041
## 1725 3819.376 1.453724e-11 3819.376 Square 8563041
## 1726 3819.376 1.453724e-11 3819.376 Square 8563041
## 1727 3819.376 1.453724e-11 3819.376 Square 8563041
## 1728 3819.376 1.453724e-11 3819.376 Square 8563041
## 1729 3819.376 1.453724e-11 3819.376 Square 8563041
## 1730 3819.376 1.453724e-11 3819.376 Square 8563041
## 1731 3819.376 1.453724e-11 3819.376 Square 8563041
## 1732 3819.376 1.453724e-11 3819.376 Square 8563041
## 1733 3819.376 1.453724e-11 3819.376 Square 8563041
## 1734 3819.376 1.453724e-11 3819.376 Square 8563041
## 1735 3819.376 1.453724e-11 3819.376 Square 8563041
## 1736 3819.376 1.453724e-11 3819.376 Square 8563041
## 1737 3819.376 1.453724e-11 3819.376 Square 8563041
## 1738 3819.376 1.453724e-11 3819.376 Square 8563041
## 1739 3819.376 1.453724e-11 3819.376 Square 8563041
## 1740 3819.376 1.453724e-11 3819.376 Square 8563041
## 1741 3819.376 1.453724e-11 3819.376 Square 8563041
## 1742 3819.376 1.453724e-11 3819.376 Square 8563041
## 1743 3819.376 1.453724e-11 3819.376 Square 8563041
## 1744 3819.376 1.453724e-11 3819.376 Square 8563041
## 1745 3819.376 1.453724e-11 3819.376 Square 8563041
## 1746 3819.376 1.453724e-11 3819.376 Square 8563041
## 1747 3819.376 1.453724e-11 3819.376 Square 8563041
## 1748 3819.376 1.453724e-11 3819.376 Square 8563041
## 1749 3819.376 1.453724e-11 3819.376 Square 8563041
## 1750 3819.376 1.453724e-11 3819.376 Square 8563041
## 1751 3819.376 1.453724e-11 3819.376 Square 8563041
## 1752 3819.376 1.453724e-11 3819.376 Square 8563041
## 1753 3819.376 1.453724e-11 3819.376 Square 8563041
## 1754 3819.376 1.453724e-11 3819.376 Square 8563041
## 1755 3819.376 1.453724e-11 3819.376 Square 8563041
## 1756 3819.376 1.453724e-11 3819.376 Square 8563041
## 1757 3819.376 1.453724e-11 3819.376 Square 8563041
## 1758 3819.376 1.453724e-11 3819.376 Square 8563041
## 1759 3819.376 1.453724e-11 3819.376 Square 8563041
## 1760 3819.376 1.453724e-11 3819.376 Square 8563041
## 1761 3819.376 1.453724e-11 3819.376 Square 8563041
## 1762 3819.376 1.453724e-11 3819.376 Square 8563041
## 1763 3819.376 1.453724e-11 3819.376 Square 8563041
## 1764 3819.376 1.453724e-11 3819.376 Square 8563041
## 1765 3819.376 1.453724e-11 3819.376 Square 8563041
## 1766 3819.376 1.453724e-11 3819.376 Square 8563041
## 1767 3819.376 1.453724e-11 3819.376 Square 8563041
## 1768 3819.376 1.453724e-11 3819.376 Square 8563041
## 1769 3819.376 1.453724e-11 3819.376 Square 8563041
## 1770 3819.376 1.453724e-11 3819.376 Square 8563041
## 1771 3819.376 1.453724e-11 3819.376 Square 8563041
## 1772 3819.376 1.453724e-11 3819.376 Square 8563041
## 1773 3819.376 1.453724e-11 3819.376 Square 8563041
## 1774 3819.376 1.453724e-11 3819.376 Square 8563041
## 1775 3819.376 1.453724e-11 3819.376 Square 8563041
## 1776 3819.376 1.453724e-11 3819.376 Square 8563041
## 1777 3819.376 1.453724e-11 3819.376 Square 8563041
## 1778 3819.376 1.453724e-11 3819.376 Square 8563041
## 1779 3819.376 1.453724e-11 3819.376 Square 8563041
## 1780 3819.376 1.453724e-11 3819.376 Square 8563041
## 1781 3819.376 1.453724e-11 3819.376 Square 8563041
## 1782 3819.376 1.453724e-11 3819.376 Square 8563041
## 1783 3819.376 1.453724e-11 3819.376 Square 8563041
## 1784 3819.376 1.453724e-11 3819.376 Square 8563041
## 1785 3819.376 1.453724e-11 3819.376 Square 8563041
## 1786 3819.376 1.453724e-11 3819.376 Square 8563041
## 1787 3819.376 1.453724e-11 3819.376 Square 8563041
## 1788 3819.376 1.453724e-11 3819.376 Square 8563041
## 1789 3819.376 1.453724e-11 3819.376 Square 8563041
## 1790 3819.376 1.453724e-11 3819.376 Square 8563041
## 1791 3819.376 1.453724e-11 3819.376 Square 8563041
## 1792 3819.376 1.453724e-11 3819.376 Square 8563041
## 1793 3819.376 1.453724e-11 3819.376 Square 8563041
## 1794 3819.376 1.453724e-11 3819.376 Square 8563041
## 1795 3819.376 1.453724e-11 3819.376 Square 8563041
## 1796 3819.376 1.453724e-11 3819.376 Square 8563041
## 1797 3819.376 1.453724e-11 3819.376 Square 8563041
## 1798 3819.376 1.453724e-11 3819.376 Square 8563041
## 1799 3819.376 1.453724e-11 3819.376 Square 8563041
## 1800 3819.376 1.453724e-11 3819.376 Square 8563041
## 1801 3819.376 1.453724e-11 3819.376 Square 8563041
## 1802 3819.376 1.453724e-11 3819.376 Square 8563041
## 1803 3819.376 1.453724e-11 3819.376 Square 8563041
## 1804 3819.376 1.453724e-11 3819.376 Square 8563041
## 1805 3819.376 1.453724e-11 3819.376 Square 8563041
## 1806 3819.376 1.453724e-11 3819.376 Square 8563041
## 1807 3819.376 1.453724e-11 3819.376 Square 8563041
## 1808 3819.376 1.453724e-11 3819.376 Square 8563041
## 1809 3819.376 1.453724e-11 3819.376 Square 8563041
## 1810 3819.376 1.453724e-11 3819.376 Square 8563041
## 1811 3819.376 1.453724e-11 3819.376 Square 8563041
## 1812 3819.376 1.453724e-11 3819.376 Square 8563041
## 1813 3819.376 1.453724e-11 3819.376 Square 8563041
## 1814 3819.376 1.453724e-11 3819.376 Square 8563041
## 1815 3819.376 1.453724e-11 3819.376 Square 8563041
## 1816 3819.376 1.453724e-11 3819.376 Square 8563041
## 1817 3819.376 1.453724e-11 3819.376 Square 8563041
## 1818 3819.376 1.453724e-11 3819.376 Square 8563041
## 1819 3819.376 1.453724e-11 3819.376 Square 8563041
## 1820 3819.376 1.453724e-11 3819.376 Square 8563041
## 1821 3819.376 1.453724e-11 3819.376 Square 8563041
## 1822 3819.376 1.453724e-11 3819.376 Square 8563041
## 1823 3819.376 1.453724e-11 3819.376 Square 8563041
## 1824 3819.376 1.453724e-11 3819.376 Square 8563041
## 1825 3819.376 1.453724e-11 3819.376 Square 8563041
## 1826 3819.376 1.453724e-11 3819.376 Square 8563041
## 1827 3819.376 1.453724e-11 3819.376 Square 8563041
## 1828 3819.376 1.453724e-11 3819.376 Square 8563041
## 1829 3819.376 1.453724e-11 3819.376 Square 8563041
## 1830 3819.376 1.453724e-11 3819.376 Square 8563041
## 1831 3819.376 1.453724e-11 3819.376 Square 8563041
## 1832 3819.376 1.453724e-11 3819.376 Square 8563041
## 1833 3819.376 1.453724e-11 3819.376 Square 8563041
## 1834 3819.376 1.453724e-11 3819.376 Square 8563041
## 1835 3819.376 1.453724e-11 3819.376 Square 8563041
## 1836 3819.376 1.453724e-11 3819.376 Square 8563041
## 1837 3819.376 1.453724e-11 3819.376 Square 8563041
## 1838 3819.376 1.453724e-11 3819.376 Square 8563041
## 1839 3819.376 1.453724e-11 3819.376 Square 8563041
## 1840 3819.376 1.453724e-11 3819.376 Square 8563041
## 1841 3819.376 1.453724e-11 3819.376 Square 8563041
## 1842 3819.376 1.453724e-11 3819.376 Square 8563041
## 1843 3819.376 1.453724e-11 3819.376 Square 8563041
## 1844 3819.376 1.453724e-11 3819.376 Square 8563041
## 1845 3819.376 1.453724e-11 3819.376 Square 8563041
## 1846 3819.376 1.453724e-11 3819.376 Square 8563041
## 1847 3819.376 1.453724e-11 3819.376 Square 8563041
## 1848 3819.376 1.453724e-11 3819.376 Square 8563041
## 1849 3819.376 1.453724e-11 3819.376 Square 8563041
## 1850 3819.376 1.453724e-11 3819.376 Square 8563041
## 1851 3819.376 1.453724e-11 3819.376 Square 8563041
## 1852 3819.376 1.453724e-11 3819.376 Square 8563041
## 1853 3819.376 1.453724e-11 3819.376 Square 8563041
## 1854 3819.376 1.453724e-11 3819.376 Square 8563041
## 1855 3819.376 1.453724e-11 3819.376 Square 8563041
## 1856 3819.376 1.453724e-11 3819.376 Square 8563041
## 1857 3819.376 1.453724e-11 3819.376 Square 8563041
## 1858 3819.376 1.453724e-11 3819.376 Square 8563041
## 1859 3819.376 1.453724e-11 3819.376 Square 8563041
## 1860 3819.376 1.453724e-11 3819.376 Square 8563041
## 1861 3819.376 1.453724e-11 3819.376 Square 8563041
## 1862 3819.376 1.453724e-11 3819.376 Square 8563041
## 1863 3819.376 1.453724e-11 3819.376 Square 8563041
## 1864 3819.376 1.453724e-11 3819.376 Square 8563041
## 1865 3819.376 1.453724e-11 3819.376 Square 8563041
## 1866 3819.376 1.453724e-11 3819.376 Square 8563041
## 1867 3819.376 1.453724e-11 3819.376 Square 8563041
## 1868 3819.376 1.453724e-11 3819.376 Square 8563041
## 1869 3819.376 1.453724e-11 3819.376 Square 8563041
## 1870 3819.376 1.453724e-11 3819.376 Square 8563041
## 1871 3819.376 1.453724e-11 3819.376 Square 8563041
## 1872 3819.376 1.453724e-11 3819.376 Square 8563041
## 1873 3819.376 1.453724e-11 3819.376 Square 8563041
## 1874 3819.376 1.453724e-11 3819.376 Square 8563041
## 1875 3819.376 1.453724e-11 3819.376 Square 8563041
## 1876 3819.376 1.453724e-11 3819.376 Square 8563041
## 1877 3819.376 1.453724e-11 3819.376 Square 8563041
## 1878 3819.376 1.453724e-11 3819.376 Square 8563041
## 1879 3819.376 1.453724e-11 3819.376 Square 8563041
## 1880 3819.376 1.453724e-11 3819.376 Square 8563041
## 1881 3819.376 1.453724e-11 3819.376 Square 8563041
## 1882 3819.376 1.453724e-11 3819.376 Square 8563041
## 1883 3819.376 1.453724e-11 3819.376 Square 8563041
## 1884 3819.376 1.453724e-11 3819.376 Square 8563041
## 1885 3819.376 1.453724e-11 3819.376 Square 8563041
## 1886 3819.376 1.453724e-11 3819.376 Square 8563041
## 1887 3819.376 1.453724e-11 3819.376 Square 8563041
## 1888 3819.376 1.453724e-11 3819.376 Square 8563041
## 1889 3819.376 1.453724e-11 3819.376 Square 8563041
## 1890 3819.376 1.453724e-11 3819.376 Square 8563041
## 1891 3819.376 1.453724e-11 3819.376 Square 8563041
## 1892 3819.376 1.453724e-11 3819.376 Square 8563041
## 1893 3819.376 1.453724e-11 3819.376 Square 8563041
## 1894 3819.376 1.453724e-11 3819.376 Square 8563041
## 1895 3819.376 1.453724e-11 3819.376 Square 8563041
## 1896 3819.376 1.453724e-11 3819.376 Square 8563041
## 1897 3819.376 1.453724e-11 3819.376 Square 8563041
## 1898 3819.376 1.453724e-11 3819.376 Square 8563041
## 1899 3819.376 1.453724e-11 3819.376 Square 8563041
## 1900 3819.376 1.453724e-11 3819.376 Square 8563041
## 1901 3819.376 1.453724e-11 3819.376 Square 8563041
## 1902 3819.376 1.453724e-11 3819.376 Square 8563041
## 1903 3819.376 1.453724e-11 3819.376 Square 8563041
## 1904 3819.376 1.453724e-11 3819.376 Square 8563041
## 1905 3819.376 1.453724e-11 3819.376 Square 8563041
## 1906 3819.376 1.453724e-11 3819.376 Square 8563041
## 1907 3819.376 1.453724e-11 3819.376 Square 8563041
## 1908 3819.376 1.453724e-11 3819.376 Square 8563041
## 1909 3819.376 1.453724e-11 3819.376 Square 8563041
## 1910 3819.376 1.453724e-11 3819.376 Square 8563041
## 1911 3819.376 1.453724e-11 3819.376 Square 8563041
## 1912 3819.376 1.453724e-11 3819.376 Square 8563041
## 1913 3819.376 1.453724e-11 3819.376 Square 8563041
## 1914 3819.376 1.453724e-11 3819.376 Square 8563041
## 1915 3819.376 1.453724e-11 3819.376 Square 8563041
## 1916 3819.376 1.453724e-11 3819.376 Square 8563041
## 1917 3819.376 1.453724e-11 3819.376 Square 8563041
## 1918 3819.376 1.453724e-11 3819.376 Square 8563041
## 1919 3819.376 1.453724e-11 3819.376 Square 8563041
## 1920 3819.376 1.453724e-11 3819.376 Square 8563041
## 1921 3819.376 1.453724e-11 3819.376 Square 8563041
## 1922 3819.376 1.453724e-11 3819.376 Square 8563041
## 1923 3819.376 1.453724e-11 3819.376 Square 8563041
## 1924 3819.376 1.453724e-11 3819.376 Square 8563041
## 1925 3819.376 1.453724e-11 3819.376 Square 8563041
## 1926 3819.376 1.453724e-11 3819.376 Square 8563041
## 1927 3819.376 1.453724e-11 3819.376 Square 8563041
## 1928 3819.376 1.453724e-11 3819.376 Square 8563041
## 1929 3819.376 1.453724e-11 3819.376 Square 8563041
## 1930 3819.376 1.453724e-11 3819.376 Square 8563041
## 1931 3819.376 1.453724e-11 3819.376 Square 8563041
## 1932 3819.376 1.453724e-11 3819.376 Square 8563041
## 1933 3819.376 1.453724e-11 3819.376 Square 8563041
## 1934 3819.376 1.453724e-11 3819.376 Square 8563041
## 1935 3819.376 1.453724e-11 3819.376 Square 8563041
## 1936 3819.376 1.453724e-11 3819.376 Square 8563041
## 1937 3819.376 1.453724e-11 3819.376 Square 8563041
## 1938 3819.376 1.453724e-11 3819.376 Square 8563041
## 1939 3819.376 1.453724e-11 3819.376 Square 8563041
## 1940 3819.376 1.453724e-11 3819.376 Square 8563041
## 1941 3819.376 1.453724e-11 3819.376 Square 8563041
## 1942 3819.376 1.453724e-11 3819.376 Square 8563041
## 1943 3819.376 1.453724e-11 3819.376 Square 8563041
## 1944 3819.376 1.453724e-11 3819.376 Square 8563041
## 1945 3819.376 1.453724e-11 3819.376 Square 8563041
## 1946 3819.376 1.453724e-11 3819.376 Square 8563041
## 1947 3819.376 1.453724e-11 3819.376 Square 8563041
## 1948 3819.376 1.453724e-11 3819.376 Square 8563041
## 1949 3819.376 1.453724e-11 3819.376 Square 8563041
## 1950 3819.376 1.453724e-11 3819.376 Square 8563041
## 1951 3819.376 1.453724e-11 3819.376 Square 8563041
## 1952 3819.376 1.453724e-11 3819.376 Square 8563041
## 1953 3819.376 1.453724e-11 3819.376 Square 8563041
## 1954 3819.376 1.453724e-11 3819.376 Square 8563041
## 1955 3819.376 1.453724e-11 3819.376 Square 8563041
## 1956 3819.376 1.453724e-11 3819.376 Square 8563041
## 1957 3819.376 1.453724e-11 3819.376 Square 8563041
## 1958 3819.376 1.453724e-11 3819.376 Square 8563041
## 1959 3819.376 1.453724e-11 3819.376 Square 8563041
## 1960 3819.376 1.453724e-11 3819.376 Square 8563041
## 1961 3819.376 1.453724e-11 3819.376 Square 8563041
## 1962 3819.376 1.453724e-11 3819.376 Square 8563041
## 1963 3819.376 1.453724e-11 3819.376 Square 8563041
## 1964 3819.376 1.453724e-11 3819.376 Square 8563041
## 1965 3819.376 1.453724e-11 3819.376 Square 8563041
## 1966 3819.376 1.453724e-11 3819.376 Square 8563041
## 1967 3819.376 1.453724e-11 3819.376 Square 8563041
## 1968 3819.376 1.453724e-11 3819.376 Square 8563041
## 1969 3819.376 1.453724e-11 3819.376 Square 8563041
## 1970 3819.376 1.453724e-11 3819.376 Square 8563041
## 1971 3819.376 1.453724e-11 3819.376 Square 8563041
## 1972 3819.376 1.453724e-11 3819.376 Square 8563041
## 1973 3819.376 1.453724e-11 3819.376 Square 8563041
## 1974 3819.376 1.453724e-11 3819.376 Square 8563041
## 1975 3819.376 1.453724e-11 3819.376 Square 8563041
## 1976 3819.376 1.453724e-11 3819.376 Square 8563041
## 1977 3819.376 1.453724e-11 3819.376 Square 8563041
## 1978 3819.376 1.453724e-11 3819.376 Square 8563041
## 1979 3819.376 1.453724e-11 3819.376 Square 8563041
## 1980 3819.376 1.453724e-11 3819.376 Square 8563041
## 1981 3819.376 1.453724e-11 3819.376 Square 8563041
## 1982 3819.376 1.453724e-11 3819.376 Square 8563041
## 1983 3819.376 1.453724e-11 3819.376 Square 8563041
## 1984 3819.376 1.453724e-11 3819.376 Square 8563041
## 1985 3819.376 1.453724e-11 3819.376 Square 8563041
## 1986 3819.376 1.453724e-11 3819.376 Square 8563041
## 1987 3819.376 1.453724e-11 3819.376 Square 8563041
## 1988 3819.376 1.453724e-11 3819.376 Square 8563041
## 1989 3819.376 1.453724e-11 3819.376 Square 8563041
## 1990 3819.376 1.453724e-11 3819.376 Square 8563041
## 1991 3819.376 1.453724e-11 3819.376 Square 8563041
## 1992 3819.376 1.453724e-11 3819.376 Square 8563041
## 1993 3819.376 1.453724e-11 3819.376 Square 8563041
## 1994 3819.376 1.453724e-11 3819.376 Square 8563041
## 1995 3819.376 1.453724e-11 3819.376 Square 8563041
## 1996 3819.376 1.453724e-11 3819.376 Square 8563041
## 1997 3819.376 1.453724e-11 3819.376 Square 8563041
## 1998 3819.376 1.453724e-11 3819.376 Square 8563041
## 1999 3819.376 1.453724e-11 3819.376 Square 8563041
## 2000 3819.376 1.453724e-11 3819.376 Square 8563041
## 2001 3819.376 1.453724e-11 3819.376 Square 8563041
## 2002 3819.376 1.453724e-11 3819.376 Square 8563041
## 2003 3819.376 1.453724e-11 3819.376 Square 8563041
## 2004 3819.376 1.453724e-11 3819.376 Square 8563041
## 2005 3819.376 1.453724e-11 3819.376 Square 8563041
## 2006 3819.376 1.453724e-11 3819.376 Square 8563041
## 2007 3819.376 1.453724e-11 3819.376 Square 8563041
## 2008 3819.376 1.453724e-11 3819.376 Square 8563041
## 2009 3819.376 1.453724e-11 3819.376 Square 8563041
## 2010 3819.376 1.453724e-11 3819.376 Square 8563041
## 2011 3819.376 1.453724e-11 3819.376 Square 8563041
## 2012 3819.376 1.453724e-11 3819.376 Square 8563041
## 2013 3819.376 1.453724e-11 3819.376 Square 8563041
## 2014 3819.376 1.453724e-11 3819.376 Square 8563041
## 2015 3819.376 1.453724e-11 3819.376 Square 8563041
## 2016 3819.376 1.453724e-11 3819.376 Square 8563041
## 2017 3819.376 1.453724e-11 3819.376 Square 8563041
## 2018 3819.376 1.453724e-11 3819.376 Square 8563041
## 2019 3819.376 1.453724e-11 3819.376 Square 8563041
## 2020 3819.376 1.453724e-11 3819.376 Square 8563041
## 2021 3819.376 1.453724e-11 3819.376 Square 8563041
## 2022 3819.376 1.453724e-11 3819.376 Square 8563041
## 2023 3819.376 1.453724e-11 3819.376 Square 8563041
## 2024 3819.376 1.453724e-11 3819.376 Square 8563041
## 2025 3819.376 1.453724e-11 3819.376 Square 8563041
## 2026 3819.376 1.453724e-11 3819.376 Square 8563041
## 2027 3819.376 1.453724e-11 3819.376 Square 8563041
## 2028 3819.376 1.453724e-11 3819.376 Square 8563041
## 2029 3819.376 1.453724e-11 3819.376 Square 8563041
## 2030 3819.376 1.453724e-11 3819.376 Square 8563041
## 2031 3819.376 1.453724e-11 3819.376 Square 8563041
## 2032 3819.376 1.453724e-11 3819.376 Square 8563041
## 2033 3819.376 1.453724e-11 3819.376 Square 8563041
## 2034 3819.376 1.453724e-11 3819.376 Square 8563041
## 2035 3819.376 1.453724e-11 3819.376 Square 8563041
## 2036 3819.376 1.453724e-11 3819.376 Square 8563041
## 2037 3819.376 1.453724e-11 3819.376 Square 8563041
## 2038 3819.376 1.453724e-11 3819.376 Square 8563041
## 2039 3819.376 1.453724e-11 3819.376 Square 8563041
## 2040 3819.376 1.453724e-11 3819.376 Square 8563041
## 2041 3819.376 1.453724e-11 3819.376 Square 8563041
## 2042 3819.376 1.453724e-11 3819.376 Square 8563041
## 2043 3819.376 1.453724e-11 3819.376 Square 8563041
## 2044 3819.376 1.453724e-11 3819.376 Square 8563041
## 2045 3819.376 1.453724e-11 3819.376 Square 8563041
## 2046 3819.376 1.453724e-11 3819.376 Square 8563041
## 2047 3819.376 1.453724e-11 3819.376 Square 8563041
## 2048 3819.376 1.453724e-11 3819.376 Square 8563041
## 2049 3819.376 1.453724e-11 3819.376 Square 8563041
## 2050 3819.376 1.453724e-11 3819.376 Square 8563041
## 2051 3819.376 1.453724e-11 3819.376 Square 8563041
## 2052 3819.376 1.453724e-11 3819.376 Square 8563041
## 2053 3819.376 1.453724e-11 3819.376 Square 8563041
## 2054 3819.376 1.453724e-11 3819.376 Square 8563041
## 2055 3819.376 1.453724e-11 3819.376 Square 8563041
## 2056 3819.376 1.453724e-11 3819.376 Square 8563041
## 2057 3819.376 1.453724e-11 3819.376 Square 8563041
## 2058 3819.376 1.453724e-11 3819.376 Square 8563041
## 2059 3819.376 1.453724e-11 3819.376 Square 8563041
## 2060 3819.376 1.453724e-11 3819.376 Square 8563041
## 2061 3819.376 1.453724e-11 3819.376 Square 8563041
## 2062 3819.376 1.453724e-11 3819.376 Square 8563041
## 2063 3819.376 1.453724e-11 3819.376 Square 8563041
## 2064 3819.376 1.453724e-11 3819.376 Square 8563041
## 2065 3819.376 1.453724e-11 3819.376 Square 8563041
## 2066 3819.376 1.453724e-11 3819.376 Square 8563041
## 2067 3819.376 1.453724e-11 3819.376 Square 8563041
## 2068 3819.376 1.453724e-11 3819.376 Square 8563041
## 2069 3819.376 1.453724e-11 3819.376 Square 8563041
## 2070 3819.376 1.453724e-11 3819.376 Square 8563041
## 2071 3819.376 1.453724e-11 3819.376 Square 8563041
## 2072 3819.376 1.453724e-11 3819.376 Square 8563041
## 2073 3819.376 1.453724e-11 3819.376 Square 8563041
## 2074 3819.376 1.453724e-11 3819.376 Square 8563041
## 2075 3819.376 1.453724e-11 3819.376 Square 8563041
## 2076 3819.376 1.453724e-11 3819.376 Square 8563041
## 2077 3819.376 1.453724e-11 3819.376 Square 8563041
## 2078 3819.376 1.453724e-11 3819.376 Square 8563041
## 2079 3819.376 1.453724e-11 3819.376 Square 8563041
## 2080 3819.376 1.453724e-11 3819.376 Square 8563041
## 2081 3819.376 1.453724e-11 3819.376 Square 8563041
## 2082 3819.376 1.453724e-11 3819.376 Square 8563041
## 2083 3819.376 1.453724e-11 3819.376 Square 8563041
## 2084 3819.376 1.453724e-11 3819.376 Square 8563041
## 2085 3819.376 1.453724e-11 3819.376 Square 8563041
## 2086 3819.376 1.453724e-11 3819.376 Square 8563041
## 2087 3819.376 1.453724e-11 3819.376 Square 8563041
## 2088 3819.376 1.453724e-11 3819.376 Square 8563041
## 2089 3819.376 1.453724e-11 3819.376 Square 8563041
## 2090 3819.376 1.453724e-11 3819.376 Square 8563041
## 2091 3819.376 1.453724e-11 3819.376 Square 8563041
## 2092 3819.376 1.453724e-11 3819.376 Square 8563041
## 2093 3819.376 1.453724e-11 3819.376 Square 8563041
## 2094 3819.376 1.453724e-11 3819.376 Square 8563041
## 2095 3819.376 1.453724e-11 3819.376 Square 8563041
## 2096 3819.376 1.453724e-11 3819.376 Square 8563041
## 2097 3819.376 1.453724e-11 3819.376 Square 8563041
## 2098 3819.376 1.453724e-11 3819.376 Square 8563041
## 2099 3819.376 1.453724e-11 3819.376 Square 8563041
## 2100 3819.376 1.453724e-11 3819.376 Square 8563041
## 2101 3819.376 1.453724e-11 3819.376 Square 8563041
## 2102 3819.376 1.453724e-11 3819.376 Square 8563041
## 2103 3819.376 1.453724e-11 3819.376 Square 8563041
## 2104 3819.376 1.453724e-11 3819.376 Square 8563041
## 2105 3819.376 1.453724e-11 3819.376 Square 8563041
## 2106 3819.376 1.453724e-11 3819.376 Square 8563041
## 2107 3819.376 1.453724e-11 3819.376 Square 8563041
## 2108 3819.376 1.453724e-11 3819.376 Square 8563041
## 2109 3819.376 1.453724e-11 3819.376 Square 8563041
## 2110 3819.376 1.453724e-11 3819.376 Square 8563041
## 2111 3819.376 1.453724e-11 3819.376 Square 8563041
## 2112 3819.376 1.453724e-11 3819.376 Square 8563041
## 2113 3819.376 1.453724e-11 3819.376 Square 8563041
## 2114 3819.376 1.453724e-11 3819.376 Square 8563041
## 2115 3819.376 1.453724e-11 3819.376 Square 8563041
## 2116 3819.376 1.453724e-11 3819.376 Square 8563041
## 2117 3819.376 1.453724e-11 3819.376 Square 8563041
## 2118 3819.376 1.453724e-11 3819.376 Square 8563041
## 2119 3819.376 1.453724e-11 3819.376 Square 8563041
## 2120 3819.376 1.453724e-11 3819.376 Square 8563041
## 2121 3819.376 1.453724e-11 3819.376 Square 8563041
## 2122 3819.376 1.453724e-11 3819.376 Square 8563041
## 2123 3819.376 1.453724e-11 3819.376 Square 8563041
## 2124 3819.376 1.453724e-11 3819.376 Square 8563041
## 2125 3819.376 1.453724e-11 3819.376 Square 8563041
## 2126 3819.376 1.453724e-11 3819.376 Square 8563041
## 2127 3819.376 1.453724e-11 3819.376 Square 8563041
## 2128 3819.376 1.453724e-11 3819.376 Square 8563041
## 2129 3819.376 1.453724e-11 3819.376 Square 8563041
## 2130 3819.376 1.453724e-11 3819.376 Square 8563041
## 2131 3819.376 1.453724e-11 3819.376 Square 8563041
## 2132 3819.376 1.453724e-11 3819.376 Square 8563041
## 2133 3819.376 1.453724e-11 3819.376 Square 8563041
## 2134 3819.376 1.453724e-11 3819.376 Square 8563041
## 2135 3819.376 1.453724e-11 3819.376 Square 8563041
## 2136 3819.376 1.453724e-11 3819.376 Square 8563041
## 2137 3819.376 1.453724e-11 3819.376 Square 8563041
## 2138 3819.376 1.453724e-11 3819.376 Square 8563041
## 2139 3819.376 1.453724e-11 3819.376 Square 8563041
## 2140 3819.376 1.453724e-11 3819.376 Square 8563041
## 2141 3819.376 1.453724e-11 3819.376 Square 8563041
## 2142 3819.376 1.453724e-11 3819.376 Square 8563041
## 2143 3819.376 1.453724e-11 3819.376 Square 8563041
## 2144 3819.376 1.453724e-11 3819.376 Square 8563041
## 2145 3819.376 1.453724e-11 3819.376 Square 8563041
## 2146 3819.376 1.453724e-11 3819.376 Square 8563041
## 2147 3819.376 1.453724e-11 3819.376 Square 8563041
## 2148 3819.376 1.453724e-11 3819.376 Square 8563041
## 2149 3819.376 1.453724e-11 3819.376 Square 8563041
## 2150 3819.376 1.453724e-11 3819.376 Square 8563041
## 2151 3819.376 1.453724e-11 3819.376 Square 8563041
## 2152 3819.376 1.453724e-11 3819.376 Square 8563041
## 2153 3819.376 1.453724e-11 3819.376 Square 8563041
## 2154 3819.376 1.453724e-11 3819.376 Square 8563041
## 2155 3819.376 1.453724e-11 3819.376 Square 8563041
## 2156 3819.376 1.453724e-11 3819.376 Square 8563041
## 2157 3819.376 1.453724e-11 3819.376 Square 8563041
## 2158 3819.376 1.453724e-11 3819.376 Square 8563041
## 2159 3819.376 1.453724e-11 3819.376 Square 8563041
## 2160 3819.376 1.453724e-11 3819.376 Square 8563041
## 2161 3819.376 1.453724e-11 3819.376 Square 8563041
## 2162 3819.376 1.453724e-11 3819.376 Square 8563041
## 2163 3819.376 1.453724e-11 3819.376 Square 8563041
## 2164 3819.376 1.453724e-11 3819.376 Square 8563041
## 2165 3819.376 1.453724e-11 3819.376 Square 8563041
## 2166 3819.376 1.453724e-11 3819.376 Square 8563041
## 2167 3819.376 1.453724e-11 3819.376 Square 8563041
## 2168 3819.376 1.453724e-11 3819.376 Square 8563041
## 2169 3819.376 1.453724e-11 3819.376 Square 8563041
## 2170 3819.376 1.453724e-11 3819.376 Square 8563041
## 2171 3819.376 1.453724e-11 3819.376 Square 8563041
## 2172 3819.376 1.453724e-11 3819.376 Square 8563041
## 2173 3819.376 1.453724e-11 3819.376 Square 8563041
## 2174 3819.376 1.453724e-11 3819.376 Square 8563041
## 2175 3819.376 1.453724e-11 3819.376 Square 8563041
## 2176 3819.376 1.453724e-11 3819.376 Square 8563041
## 2177 3819.376 1.453724e-11 3819.376 Square 8563041
## 2178 3819.376 1.453724e-11 3819.376 Square 8563041
## 2179 3819.376 1.453724e-11 3819.376 Square 8563041
## 2180 3819.376 1.453724e-11 3819.376 Square 8563041
## 2181 3819.376 1.453724e-11 3819.376 Square 8563041
## 2182 3819.376 1.453724e-11 3819.376 Square 8563041
## 2183 3819.376 1.453724e-11 3819.376 Square 8563041
## 2184 3819.376 1.453724e-11 3819.376 Square 8563041
## 2185 3819.376 1.453724e-11 3819.376 Square 8563041
## 2186 3819.376 1.453724e-11 3819.376 Square 8563041
## 2187 3819.376 1.453724e-11 3819.376 Square 8563041
## 2188 3819.376 1.453724e-11 3819.376 Square 8563041
## 2189 3819.376 1.453724e-11 3819.376 Square 8563041
## 2190 3819.376 1.453724e-11 3819.376 Square 8563041
## 2191 3819.376 1.453724e-11 3819.376 Square 8563041
## 2192 3819.376 1.453724e-11 3819.376 Square 8563041
## 2193 3819.376 1.453724e-11 3819.376 Square 8563041
## 2194 3819.376 1.453724e-11 3819.376 Square 8563041
## 2195 3819.376 1.453724e-11 3819.376 Square 8563041
## 2196 3819.376 1.453724e-11 3819.376 Square 8563041
## 2197 3819.376 1.453724e-11 3819.376 Square 8563041
## 2198 3819.376 1.453724e-11 3819.376 Square 8563041
## 2199 3819.376 1.453724e-11 3819.376 Square 8563041
## 2200 3819.376 1.453724e-11 3819.376 Square 8563041
## 2201 3819.376 1.453724e-11 3819.376 Square 8563041
## 2202 3819.376 1.453724e-11 3819.376 Square 8563041
## 2203 3819.376 1.453724e-11 3819.376 Square 8563041
## 2204 3819.376 1.453724e-11 3819.376 Square 8563041
## 2205 3819.376 1.453724e-11 3819.376 Square 8563041
## 2206 3819.376 1.453724e-11 3819.376 Square 8563041
## 2207 3819.376 1.453724e-11 3819.376 Square 8563041
## 2208 3819.376 1.453724e-11 3819.376 Square 8563041
## 2209 3819.376 1.453724e-11 3819.376 Square 8563041
## 2210 3819.376 1.453724e-11 3819.376 Square 8563041
## 2211 3819.376 1.453724e-11 3819.376 Square 8563041
## 2212 3819.376 1.453724e-11 3819.376 Square 8563041
## 2213 3819.376 1.453724e-11 3819.376 Square 8563041
## 2214 3819.376 1.453724e-11 3819.376 Square 8563041
## 2215 3819.376 1.453724e-11 3819.376 Square 8563041
## 2216 3819.376 1.453724e-11 3819.376 Square 8563041
## 2217 3819.376 1.453724e-11 3819.376 Square 8563041
## 2218 3819.376 1.453724e-11 3819.376 Square 8563041
## 2219 3819.376 1.453724e-11 3819.376 Square 8563041
## 2220 3819.376 1.453724e-11 3819.376 Square 8563041
## 2221 3819.376 1.453724e-11 3819.376 Square 8563041
## 2222 3819.376 1.453724e-11 3819.376 Square 8563041
## 2223 3819.376 1.453724e-11 3819.376 Square 8563041
## 2224 3819.376 1.453724e-11 3819.376 Square 8563041
## 2225 3819.376 1.453724e-11 3819.376 Square 8563041
## 2226 3819.376 1.453724e-11 3819.376 Square 8563041
## 2227 3819.376 1.453724e-11 3819.376 Square 8563041
## 2228 3819.376 1.453724e-11 3819.376 Square 8563041
## 2229 3819.376 1.453724e-11 3819.376 Square 8563041
## 2230 3819.376 1.453724e-11 3819.376 Square 8563041
## 2231 3819.376 1.453724e-11 3819.376 Square 8563041
## 2232 3819.376 1.453724e-11 3819.376 Square 8563041
## 2233 3819.376 1.453724e-11 3819.376 Square 8563041
## 2234 3819.376 1.453724e-11 3819.376 Square 8563041
## 2235 3819.376 1.453724e-11 3819.376 Square 8563041
## 2236 3819.376 1.453724e-11 3819.376 Square 8563041
## 2237 3819.376 1.453724e-11 3819.376 Square 8563041
## 2238 3819.376 1.453724e-11 3819.376 Square 8563041
## 2239 3819.376 1.453724e-11 3819.376 Square 8563041
## 2240 3819.376 1.453724e-11 3819.376 Square 8563041
## 2241 3819.376 1.453724e-11 3819.376 Square 8563041
## 2242 3819.376 1.453724e-11 3819.376 Square 8563041
get_df(sq_hex, "Hexagonal")
## mean sd area text count
## 1 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 3 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 4 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 5 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 6 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 7 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 8 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 9 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 10 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 11 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 12 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 13 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 14 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 15 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 16 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 17 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 18 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 19 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 20 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 21 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 22 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 23 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 24 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 25 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 26 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 27 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 28 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 29 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 30 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 31 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 32 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 33 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 34 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 35 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 36 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 37 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 38 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 39 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 40 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 41 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 42 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 43 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 44 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 45 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 46 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 47 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 48 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 49 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 50 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 51 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 52 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 53 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 54 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 55 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 56 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 57 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 58 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 59 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 60 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 61 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 62 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 63 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 64 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 65 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 66 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 67 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 68 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 69 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 70 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 71 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 72 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 73 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 74 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 75 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 76 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 77 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 78 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 79 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 80 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 81 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 82 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 83 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 84 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 85 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 86 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 87 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 88 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 89 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 90 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 91 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 92 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 93 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 94 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 95 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 96 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 97 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 98 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 99 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 100 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 101 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 102 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 103 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 104 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 105 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 106 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 107 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 108 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 109 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 110 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 111 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 112 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 113 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 114 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 115 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 116 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 117 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 118 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 119 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 120 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 121 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 122 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 123 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 124 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 125 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 126 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 127 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 128 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 129 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 130 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 131 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 132 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 133 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 134 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 135 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 136 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 137 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 138 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 139 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 140 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 141 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 142 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 143 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 144 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 145 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 146 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 147 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 148 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 149 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 150 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 151 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 152 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 153 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 154 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 155 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 156 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 157 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 158 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 159 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 160 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 161 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 162 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 163 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 164 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 165 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 166 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 167 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 168 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 169 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 170 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 171 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 172 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 173 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 174 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 175 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 176 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 177 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 178 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 179 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 180 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 181 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 182 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 183 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 184 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 185 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 186 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 187 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 188 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 189 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 190 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 191 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 192 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 193 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 194 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 195 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 196 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 197 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 198 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 199 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 200 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 201 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 202 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 203 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 204 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 205 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 206 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 207 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 208 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 209 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 210 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 211 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 212 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 213 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 214 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 215 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 216 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 217 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 218 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 219 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 220 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 221 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 222 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 223 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 224 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 225 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 226 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 227 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 228 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 229 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 230 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 231 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 232 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 233 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 234 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 235 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 236 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 237 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 238 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 239 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 240 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 241 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 242 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 243 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 244 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 245 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 246 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 247 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 248 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 249 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 250 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 251 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 252 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 253 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 254 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 255 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 256 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 257 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 258 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 259 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 260 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 261 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 262 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 263 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 264 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 265 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 266 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 267 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 268 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 269 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 270 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 271 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 272 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 273 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 274 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 275 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 276 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 277 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 278 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 279 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 280 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 281 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 282 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 283 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 284 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 285 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 286 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 287 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 288 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 289 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 290 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 291 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 292 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 293 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 294 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 295 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 296 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 297 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 298 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 299 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 300 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 301 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 302 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 303 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 304 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 305 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 306 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 307 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 308 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 309 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 310 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 311 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 312 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 313 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 314 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 315 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 316 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 317 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 318 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 319 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 320 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 321 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 322 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 323 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 324 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 325 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 326 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 327 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 328 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 329 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 330 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 331 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 332 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 333 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 334 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 335 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 336 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 337 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 338 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 339 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 340 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 341 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 342 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 343 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 344 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 345 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 346 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 347 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 348 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 349 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 350 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 351 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 352 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 353 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 354 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 355 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 356 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 357 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 358 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 359 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 360 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 361 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 362 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 363 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 364 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 365 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 366 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 367 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 368 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 369 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 370 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 371 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 372 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 373 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 374 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 375 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 376 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 377 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 378 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 379 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 380 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 381 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 382 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 383 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 384 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 385 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 386 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 387 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 388 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 389 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 390 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 391 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 392 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 393 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 394 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 395 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 396 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 397 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 398 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 399 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 400 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 401 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 402 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 403 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 404 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 405 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 406 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 407 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 408 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 409 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 410 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 411 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 412 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 413 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 414 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 415 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 416 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 417 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 418 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 419 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 420 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 421 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 422 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 423 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 424 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 425 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 426 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 427 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 428 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 429 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 430 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 431 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 432 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 433 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 434 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 435 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 436 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 437 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 438 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 439 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 440 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 441 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 442 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 443 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 444 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 445 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 446 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 447 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 448 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 449 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 450 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 451 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 452 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 453 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 454 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 455 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 456 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 457 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 458 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 459 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 460 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 461 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 462 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 463 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 464 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 465 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 466 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 467 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 468 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 469 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 470 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 471 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 472 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 473 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 474 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 475 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 476 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 477 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 478 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 479 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 480 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 481 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 482 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 483 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 484 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 485 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 486 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 487 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 488 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 489 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 490 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 491 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 492 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 493 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 494 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 495 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 496 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 497 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 498 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 499 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 500 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 501 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 502 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 503 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 504 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 505 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 506 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 507 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 508 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 509 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 510 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 511 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 512 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 513 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 514 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 515 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 516 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 517 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 518 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 519 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 520 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 521 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 522 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 523 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 524 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 525 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 526 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 527 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 528 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 529 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 530 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 531 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 532 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 533 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 534 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 535 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 536 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 537 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 538 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 539 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 540 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 541 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 542 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 543 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 544 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 545 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 546 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 547 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 548 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 549 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 550 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 551 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 552 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 553 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 554 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 555 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 556 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 557 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 558 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 559 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 560 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 561 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 562 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 563 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 564 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 565 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 566 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 567 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 568 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 569 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 570 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 571 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 572 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 573 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 574 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 575 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 576 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 577 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 578 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 579 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 580 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 581 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 582 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 583 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 584 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 585 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 586 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 587 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 588 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 589 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 590 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 591 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 592 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 593 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 594 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 595 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 596 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 597 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 598 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 599 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 600 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 601 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 602 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 603 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 604 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 605 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 606 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 607 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 608 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 609 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 610 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 611 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 612 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 613 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 614 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 615 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 616 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 617 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 618 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 619 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 620 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 621 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 622 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 623 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 624 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 625 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 626 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 627 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 628 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 629 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 630 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 631 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 632 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 633 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 634 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 635 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 636 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 637 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 638 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 639 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 640 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 641 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 642 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 643 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 644 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 645 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 646 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 647 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 648 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 649 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 650 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 651 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 652 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 653 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 654 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 655 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 656 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 657 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 658 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 659 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 660 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 661 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 662 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 663 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 664 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 665 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 666 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 667 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 668 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 669 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 670 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 671 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 672 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 673 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 674 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 675 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 676 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 677 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 678 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 679 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 680 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 681 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 682 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 683 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 684 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 685 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 686 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 687 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 688 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 689 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 690 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 691 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 692 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 693 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 694 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 695 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 696 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 697 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 698 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 699 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 700 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 701 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 702 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 703 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 704 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 705 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 706 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 707 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 708 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 709 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 710 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 711 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 712 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 713 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 714 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 715 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 716 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 717 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 718 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 719 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 720 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 721 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 722 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 723 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 724 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 725 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 726 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 727 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 728 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 729 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 730 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 731 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 732 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 733 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 734 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 735 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 736 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 737 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 738 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 739 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 740 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 741 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 742 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 743 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 744 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 745 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 746 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 747 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 748 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 749 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 750 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 751 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 752 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 753 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 754 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 755 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 756 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 757 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 758 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 759 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 760 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 761 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 762 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 763 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 764 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 765 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 766 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 767 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 768 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 769 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 770 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 771 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 772 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 773 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 774 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 775 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 776 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 777 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 778 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 779 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 780 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 781 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 782 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 783 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 784 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 785 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 786 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 787 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 788 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 789 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 790 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 791 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 792 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 793 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 794 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 795 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 796 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 797 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 798 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 799 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 800 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 801 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 802 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 803 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 804 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 805 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 806 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 807 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 808 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 809 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 810 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 811 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 812 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 813 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 814 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 815 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 816 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 817 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 818 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 819 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 820 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 821 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 822 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 823 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 824 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 825 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 826 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 827 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 828 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 829 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 830 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 831 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 832 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 833 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 834 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 835 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 836 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 837 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 838 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 839 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 840 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 841 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 842 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 843 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 844 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 845 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 846 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 847 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 848 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 849 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 850 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 851 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 852 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 853 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 854 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 855 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 856 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 857 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 858 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 859 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 860 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 861 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 862 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 863 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 864 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 865 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 866 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 867 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 868 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 869 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 870 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 871 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 872 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 873 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 874 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 875 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 876 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 877 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 878 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 879 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 880 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 881 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 882 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 883 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 884 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 885 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 886 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 887 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 888 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 889 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 890 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 891 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 892 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 893 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 894 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 895 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 896 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 897 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 898 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 899 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 900 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 901 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 902 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 903 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 904 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 905 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 906 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 907 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 908 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 909 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 910 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 911 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 912 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 913 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 914 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 915 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 916 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 917 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 918 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 919 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 920 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 921 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 922 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 923 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 924 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 925 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 926 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 927 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 928 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 929 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 930 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 931 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 932 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 933 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 934 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 935 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 936 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 937 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 938 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 939 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 940 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 941 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 942 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 943 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 944 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 945 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 946 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 947 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 948 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 949 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 950 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 951 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 952 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 953 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 954 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 955 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 956 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 957 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 958 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 959 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 960 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 961 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 962 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 963 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 964 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 965 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 966 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 967 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 968 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 969 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 970 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 971 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 972 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 973 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 974 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 975 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 976 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 977 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 978 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 979 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 980 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 981 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 982 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 983 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 984 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 985 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 986 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 987 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 988 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 989 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 990 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 991 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 992 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 993 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 994 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 995 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 996 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 997 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 998 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 999 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1000 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1001 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1002 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1003 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1004 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1005 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1006 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1007 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1008 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1009 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1010 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1011 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1012 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1013 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1014 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1015 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1016 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1017 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1018 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1019 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1020 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1021 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1022 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1023 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1024 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1025 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1026 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1027 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1028 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1029 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1030 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1031 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1032 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1033 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1034 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1035 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1036 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1037 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1038 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1039 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1040 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1041 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1042 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1043 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1044 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1045 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1046 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1047 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1048 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1049 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1050 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1051 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1052 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1053 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1054 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1055 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1056 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1057 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1058 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1059 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1060 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1061 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1062 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1063 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1064 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1065 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1066 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1067 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1068 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1069 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1070 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1071 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1072 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1073 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1074 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1075 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1076 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1077 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1078 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1079 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1080 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1081 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1082 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1083 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1084 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1085 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1086 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1087 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1088 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1089 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1090 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1091 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1092 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1093 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1094 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1095 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1096 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1097 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1098 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1099 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1100 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1101 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1102 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1103 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1104 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1105 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1106 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1107 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1108 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1109 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1110 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1111 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1112 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1113 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1114 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1115 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1116 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1117 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1118 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1119 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1120 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1121 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1122 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1123 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1124 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1125 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1126 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1127 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1128 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1129 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1130 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1131 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1132 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1133 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1134 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1135 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1136 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1137 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1138 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1139 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1140 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1141 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1142 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1143 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1144 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1145 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1146 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1147 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1148 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1149 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1150 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1151 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1152 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1153 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1154 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1155 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1156 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1157 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1158 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1159 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1160 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1161 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1162 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1163 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1164 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1165 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1166 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1167 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1168 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1169 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1170 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1171 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1172 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1173 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1174 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1175 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1176 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1177 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1178 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1179 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1180 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1181 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1182 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1183 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1184 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1185 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1186 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1187 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1188 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1189 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1190 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1191 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1192 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1193 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1194 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1195 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1196 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1197 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1198 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1199 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1200 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1201 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1202 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1203 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1204 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1205 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1206 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1207 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1208 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1209 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1210 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1211 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1212 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1213 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1214 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1215 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1216 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1217 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1218 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1219 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1220 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1221 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1222 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1223 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1224 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1225 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1226 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1227 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1228 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1229 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1230 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1231 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1232 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1233 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1234 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1235 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1236 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1237 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1238 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1239 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1240 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1241 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1242 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1243 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1244 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1245 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1246 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1247 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1248 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1249 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1250 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1251 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1252 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1253 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1254 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1255 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1256 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1257 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1258 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1259 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1260 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1261 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1262 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1263 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1264 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1265 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1266 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1267 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1268 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1269 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1270 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1271 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1272 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1273 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1274 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1275 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1276 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1277 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1278 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1279 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1280 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1281 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1282 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1283 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1284 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1285 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1286 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1287 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1288 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1289 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1290 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1291 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1292 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1293 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1294 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1295 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1296 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1297 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1298 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1299 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1300 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1301 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1302 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1303 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1304 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1305 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1306 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1307 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1308 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1309 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1310 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1311 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1312 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1313 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1314 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1315 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1316 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1317 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1318 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1319 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1320 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1321 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1322 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1323 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1324 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1325 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1326 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1327 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1328 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1329 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1330 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1331 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1332 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1333 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1334 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1335 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1336 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1337 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1338 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1339 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1340 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1341 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1342 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1343 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1344 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1345 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1346 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1347 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1348 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1349 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1350 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1351 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1352 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1353 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1354 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1355 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1356 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1357 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1358 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1359 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1360 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1361 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1362 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1363 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1364 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1365 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1366 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1367 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1368 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1369 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1370 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1371 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1372 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1373 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1374 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1375 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1376 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1377 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1378 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1379 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1380 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1381 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1382 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1383 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1384 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1385 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1386 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1387 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1388 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1389 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1390 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1391 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1392 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1393 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1394 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1395 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1396 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1397 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1398 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1399 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1400 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1401 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1402 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1403 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1404 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1405 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1406 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1407 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1408 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1409 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1410 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1411 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1412 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1413 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1414 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1415 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1416 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1417 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1418 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1419 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1420 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1421 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1422 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1423 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1424 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1425 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1426 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1427 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1428 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1429 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1430 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1431 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1432 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1433 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1434 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1435 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1436 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1437 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1438 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1439 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1440 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1441 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1442 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1443 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1444 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1445 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1446 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1447 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1448 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1449 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1450 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1451 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1452 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1453 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1454 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1455 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1456 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1457 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1458 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1459 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1460 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1461 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1462 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1463 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1464 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1465 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1466 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1467 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1468 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1469 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1470 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1471 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1472 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1473 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1474 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1475 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1476 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1477 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1478 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1479 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1480 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1481 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1482 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1483 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1484 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1485 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1486 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1487 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1488 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1489 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1490 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1491 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1492 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1493 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1494 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1495 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1496 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1497 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1498 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1499 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1500 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1501 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1502 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1503 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1504 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1505 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1506 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1507 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1508 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1509 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1510 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1511 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1512 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1513 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1514 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1515 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1516 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1517 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1518 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1519 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1520 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1521 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1522 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1523 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1524 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1525 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1526 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1527 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1528 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1529 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1530 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1531 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1532 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1533 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1534 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1535 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1536 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1537 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1538 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1539 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1540 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1541 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1542 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1543 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1544 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1545 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1546 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1547 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1548 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1549 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1550 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1551 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1552 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1553 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1554 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1555 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1556 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1557 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1558 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1559 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1560 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1561 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1562 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1563 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1564 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1565 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1566 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1567 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1568 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1569 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1570 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1571 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1572 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1573 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1574 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1575 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1576 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1577 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1578 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1579 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1580 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1581 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1582 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1583 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1584 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1585 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1586 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1587 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1588 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1589 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1590 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1591 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1592 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1593 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1594 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1595 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1596 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1597 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1598 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1599 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1600 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1601 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1602 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1603 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1604 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1605 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1606 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1607 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1608 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1609 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1610 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1611 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1612 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1613 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1614 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1615 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1616 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1617 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1618 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1619 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1620 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1621 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1622 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1623 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1624 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1625 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1626 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1627 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1628 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1629 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1630 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1631 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1632 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1633 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1634 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1635 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1636 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1637 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1638 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1639 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1640 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1641 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1642 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1643 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1644 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1645 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1646 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1647 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1648 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1649 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1650 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1651 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1652 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1653 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1654 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1655 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1656 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1657 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1658 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1659 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1660 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1661 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1662 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1663 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1664 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1665 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1666 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1667 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1668 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1669 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1670 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1671 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1672 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1673 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1674 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1675 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1676 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1677 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1678 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1679 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1680 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1681 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1682 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1683 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1684 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1685 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1686 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1687 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1688 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1689 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1690 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1691 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1692 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1693 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1694 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1695 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1696 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1697 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1698 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1699 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1700 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1701 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1702 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1703 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1704 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1705 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1706 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1707 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1708 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1709 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1710 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1711 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1712 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1713 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1714 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1715 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1716 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1717 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1718 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1719 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1720 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1721 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1722 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1723 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1724 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1725 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1726 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1727 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1728 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1729 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1730 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1731 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1732 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1733 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1734 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1735 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1736 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1737 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1738 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1739 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1740 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1741 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1742 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1743 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1744 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1745 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1746 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1747 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1748 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1749 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1750 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1751 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1752 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1753 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1754 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1755 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1756 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1757 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1758 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1759 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1760 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1761 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1762 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1763 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1764 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1765 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1766 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1767 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1768 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1769 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1770 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1771 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1772 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1773 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1774 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1775 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1776 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1777 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1778 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1779 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1780 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1781 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1782 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1783 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1784 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1785 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1786 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1787 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1788 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1789 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1790 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1791 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1792 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1793 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1794 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1795 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1796 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1797 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1798 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1799 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1800 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1801 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1802 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1803 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1804 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1805 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1806 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1807 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1808 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1809 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1810 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1811 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1812 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1813 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1814 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1815 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1816 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1817 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1818 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1819 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1820 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1821 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1822 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1823 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1824 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1825 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1826 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1827 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1828 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1829 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1830 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1831 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1832 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1833 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1834 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1835 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1836 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1837 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1838 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1839 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1840 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1841 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1842 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1843 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1844 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1845 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1846 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1847 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1848 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1849 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1850 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1851 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1852 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1853 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1854 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1855 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1856 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1857 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1858 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1859 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1860 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1861 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1862 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1863 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1864 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1865 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1866 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1867 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1868 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1869 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1870 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1871 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1872 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1873 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1874 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1875 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1876 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1877 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1878 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1879 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1880 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1881 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1882 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1883 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1884 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1885 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1886 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1887 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1888 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1889 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1890 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1891 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1892 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1893 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1894 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1895 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1896 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1897 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1898 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1899 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1900 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1901 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1902 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1903 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1904 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1905 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1906 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1907 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1908 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1909 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1910 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1911 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1912 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1913 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1914 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1915 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1916 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1917 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1918 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1919 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1920 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1921 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1922 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1923 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1924 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1925 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1926 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1927 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1928 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1929 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1930 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1931 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1932 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1933 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1934 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1935 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1936 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1937 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1938 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1939 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1940 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1941 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1942 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1943 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1944 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1945 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1946 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1947 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1948 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1949 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1950 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1951 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1952 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1953 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1954 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1955 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1956 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1957 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1958 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1959 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1960 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1961 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1962 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1963 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1964 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1965 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1966 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1967 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1968 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1969 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1970 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1971 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1972 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1973 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1974 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1975 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1976 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1977 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1978 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1979 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1980 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1981 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1982 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1983 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1984 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1985 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1986 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1987 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1988 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1989 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1990 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1991 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1992 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1993 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1994 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1995 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1996 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1997 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1998 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 1999 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2000 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2001 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2002 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2003 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2004 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2005 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2006 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2007 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2008 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2009 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2010 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2011 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2012 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2013 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2014 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2015 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2016 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2017 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2018 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2019 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2020 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2021 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2022 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2023 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2024 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2025 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2026 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2027 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2028 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2029 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2030 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2031 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2032 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2033 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2034 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2035 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2036 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2037 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2038 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2039 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2040 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2041 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2042 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2043 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2044 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2045 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2046 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2047 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2048 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2049 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2050 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2051 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2052 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2053 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2054 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2055 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2056 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2057 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2058 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2059 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2060 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2061 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2062 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2063 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2064 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2065 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2066 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2067 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2068 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2069 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2070 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2071 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2072 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2073 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2074 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2075 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2076 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2077 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2078 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2079 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2080 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2081 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2082 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2083 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2084 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2085 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2086 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2087 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2088 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2089 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2090 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2091 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2092 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2093 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2094 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2095 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2096 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2097 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2098 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2099 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2100 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2101 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2102 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2103 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2104 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2105 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2106 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2107 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2108 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2109 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2110 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2111 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2112 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2113 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2114 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2115 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2116 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2117 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2118 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2119 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2120 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2121 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2122 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2123 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2124 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2125 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2126 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2127 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2128 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2129 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2130 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2131 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2132 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2133 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2134 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2135 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2136 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2137 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2138 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2139 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2140 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2141 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2142 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2143 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2144 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2145 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2146 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2147 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2148 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2149 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2150 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2151 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2152 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2153 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2154 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2155 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2156 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2157 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2158 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2159 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2160 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2161 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2162 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2163 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2164 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2165 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2166 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2167 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2168 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2169 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2170 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2171 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2172 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2173 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2174 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2175 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2176 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2177 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2178 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2179 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2180 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2181 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2182 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2183 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2184 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2185 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2186 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2187 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2188 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2189 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2190 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2191 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2192 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2193 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2194 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2195 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2196 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2197 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2198 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2199 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2200 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2201 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2202 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2203 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2204 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2205 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2206 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2207 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2208 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2209 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2210 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2211 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2212 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2213 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2214 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2215 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2216 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2217 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2218 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2219 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2220 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2221 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2222 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2223 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2224 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2225 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2226 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2227 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2228 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2229 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2230 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2231 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2232 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2233 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2234 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2235 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2236 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2237 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2238 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2239 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2240 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2241 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2242 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2243 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2244 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2245 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2246 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2247 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2248 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2249 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2250 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2251 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2252 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2253 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2254 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2255 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2256 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2257 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2258 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2259 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2260 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2261 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2262 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2263 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2264 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2265 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2266 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2267 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2268 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2269 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2270 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
## 2271 3763.052 1.412376e-11 3763.052 Hexagonal 8545891
get_df(CONUS, "OG Counties")
## mean sd area text count
## 1 2521.745 3404.325 1157.883735 OG Counties 7837583
## 2 2521.745 3404.325 1851.399212 OG Counties 7837583
## 3 2521.745 3404.325 1668.637945 OG Counties 7837583
## 4 2521.745 3404.325 1705.143307 OG Counties 7837583
## 5 2521.745 3404.325 3327.713095 OG Counties 7837583
## 6 2521.745 3404.325 1117.858916 OG Counties 7837583
## 7 2521.745 3404.325 1762.068169 OG Counties 7837583
## 8 2521.745 3404.325 1653.889022 OG Counties 7837583
## 9 2521.745 3404.325 1398.851416 OG Counties 7837583
## 10 2521.745 3404.325 1488.688814 OG Counties 7837583
## 11 2521.745 3404.325 1076.999167 OG Counties 7837583
## 12 2521.745 3404.325 2134.812445 OG Counties 7837583
## 13 2521.745 3404.325 3416.016972 OG Counties 7837583
## 14 2521.745 3404.325 1107.949023 OG Counties 7837583
## 15 2521.745 3404.325 1474.174542 OG Counties 7837583
## 16 2521.745 3404.325 1312.985799 OG Counties 7837583
## 17 2521.745 3404.325 1863.852455 OG Counties 7837583
## 18 2521.745 3404.325 1335.952768 OG Counties 7837583
## 19 2521.745 3404.325 2605.259944 OG Counties 7837583
## 20 2521.745 3404.325 1394.992448 OG Counties 7837583
## 21 2521.745 3404.325 2401.426259 OG Counties 7837583
## 22 2521.745 3404.325 2735.723744 OG Counties 7837583
## 23 2521.745 3404.325 1889.195399 OG Counties 7837583
## 24 2521.745 3404.325 1869.400999 OG Counties 7837583
## 25 2521.745 3404.325 2201.001771 OG Counties 7837583
## 26 2521.745 3404.325 793.238496 OG Counties 7837583
## 27 2521.745 3404.325 1489.900673 OG Counties 7837583
## 28 2521.745 3404.325 1211.160247 OG Counties 7837583
## 29 2521.745 3404.325 1668.665778 OG Counties 7837583
## 30 2521.745 3404.325 1056.660602 OG Counties 7837583
## 31 2521.745 3404.325 2940.671156 OG Counties 7837583
## 32 2521.745 3404.325 2308.659709 OG Counties 7837583
## 33 2521.745 3404.325 5465.591060 OG Counties 7837583
## 34 2521.745 3404.325 1902.679996 OG Counties 7837583
## 35 2521.745 3404.325 2938.712854 OG Counties 7837583
## 36 2521.745 3404.325 1846.540997 OG Counties 7837583
## 37 2521.745 3404.325 1353.786500 OG Counties 7837583
## 38 2521.745 3404.325 2260.263571 OG Counties 7837583
## 39 2521.745 3404.325 1002.601474 OG Counties 7837583
## 40 2521.745 3404.325 392.897532 OG Counties 7837583
## 41 2521.745 3404.325 1039.416095 OG Counties 7837583
## 42 2521.745 3404.325 2301.044420 OG Counties 7837583
## 43 2521.745 3404.325 1786.119506 OG Counties 7837583
## 44 2521.745 3404.325 1128.888454 OG Counties 7837583
## 45 2521.745 3404.325 1585.364446 OG Counties 7837583
## 46 2521.745 3404.325 2183.827601 OG Counties 7837583
## 47 2521.745 3404.325 740.768855 OG Counties 7837583
## 48 2521.745 3404.325 1492.179244 OG Counties 7837583
## 49 2521.745 3404.325 1508.699626 OG Counties 7837583
## 50 2521.745 3404.325 1300.232971 OG Counties 7837583
## 51 2521.745 3404.325 1502.900002 OG Counties 7837583
## 52 2521.745 3404.325 1141.204554 OG Counties 7837583
## 53 2521.745 3404.325 2783.063437 OG Counties 7837583
## 54 2521.745 3404.325 443.475766 OG Counties 7837583
## 55 2521.745 3404.325 1952.556117 OG Counties 7837583
## 56 2521.745 3404.325 1815.633467 OG Counties 7837583
## 57 2521.745 3404.325 2391.222079 OG Counties 7837583
## 58 2521.745 3404.325 923.500472 OG Counties 7837583
## 59 2521.745 3404.325 19.727512 OG Counties 7837583
## 60 2521.745 3404.325 3386.718135 OG Counties 7837583
## 61 2521.745 3404.325 1485.693594 OG Counties 7837583
## 62 2521.745 3404.325 1848.798653 OG Counties 7837583
## 63 2521.745 3404.325 871.560938 OG Counties 7837583
## 64 2521.745 3404.325 2331.337667 OG Counties 7837583
## 65 2521.745 3404.325 1085.965091 OG Counties 7837583
## 66 2521.745 3404.325 1487.623166 OG Counties 7837583
## 67 2521.745 3404.325 2332.476336 OG Counties 7837583
## 68 2521.745 3404.325 1484.425065 OG Counties 7837583
## 69 2521.745 3404.325 903.484196 OG Counties 7837583
## 70 2521.745 3404.325 1966.391796 OG Counties 7837583
## 71 2521.745 3404.325 113.979848 OG Counties 7837583
## 72 2521.745 3404.325 924.481020 OG Counties 7837583
## 73 2521.745 3404.325 1027.355994 OG Counties 7837583
## 74 2521.745 3404.325 2111.673170 OG Counties 7837583
## 75 2521.745 3404.325 823.656248 OG Counties 7837583
## 76 2521.745 3404.325 4801.610180 OG Counties 7837583
## 77 2521.745 3404.325 1912.271825 OG Counties 7837583
## 78 2521.745 3404.325 1000.803748 OG Counties 7837583
## 79 2521.745 3404.325 1232.942254 OG Counties 7837583
## 80 2521.745 3404.325 1942.872457 OG Counties 7837583
## 81 2521.745 3404.325 1029.540823 OG Counties 7837583
## 82 2521.745 3404.325 2348.019427 OG Counties 7837583
## 83 2521.745 3404.325 1093.136611 OG Counties 7837583
## 84 2521.745 3404.325 909.583235 OG Counties 7837583
## 85 2521.745 3404.325 2748.246879 OG Counties 7837583
## 86 2521.745 3404.325 2257.231141 OG Counties 7837583
## 87 2521.745 3404.325 1861.889958 OG Counties 7837583
## 88 2521.745 3404.325 586.191843 OG Counties 7837583
## 89 2521.745 3404.325 2016.841689 OG Counties 7837583
## 90 2521.745 3404.325 903.575231 OG Counties 7837583
## 91 2521.745 3404.325 1752.575493 OG Counties 7837583
## 92 2521.745 3404.325 1417.212174 OG Counties 7837583
## 93 2521.745 3404.325 109.950241 OG Counties 7837583
## 94 2521.745 3404.325 96.330330 OG Counties 7837583
## 95 2521.745 3404.325 1485.389699 OG Counties 7837583
## 96 2521.745 3404.325 1442.262058 OG Counties 7837583
## 97 2521.745 3404.325 1483.135539 OG Counties 7837583
## 98 2521.745 3404.325 1503.739606 OG Counties 7837583
## 99 2521.745 3404.325 1405.335256 OG Counties 7837583
## 100 2521.745 3404.325 2193.020608 OG Counties 7837583
## 101 2521.745 3404.325 1067.757558 OG Counties 7837583
## 102 2521.745 3404.325 2404.691853 OG Counties 7837583
## 103 2521.745 3404.325 2166.370316 OG Counties 7837583
## 104 2521.745 3404.325 744.198026 OG Counties 7837583
## 105 2521.745 3404.325 852.693048 OG Counties 7837583
## 106 2521.745 3404.325 387.848026 OG Counties 7837583
## 107 2521.745 3404.325 2111.913359 OG Counties 7837583
## 108 2521.745 3404.325 1219.869693 OG Counties 7837583
## 109 2521.745 3404.325 1548.072709 OG Counties 7837583
## 110 2521.745 3404.325 835.847065 OG Counties 7837583
## 111 2521.745 3404.325 1129.985121 OG Counties 7837583
## 112 2521.745 3404.325 2475.808047 OG Counties 7837583
## 113 2521.745 3404.325 1490.952203 OG Counties 7837583
## 114 2521.745 3404.325 601.553078 OG Counties 7837583
## 115 2521.745 3404.325 106.878126 OG Counties 7837583
## 116 2521.745 3404.325 1733.502172 OG Counties 7837583
## 117 2521.745 3404.325 1062.284495 OG Counties 7837583
## 118 2521.745 3404.325 1310.203348 OG Counties 7837583
## 119 2521.745 3404.325 1426.612860 OG Counties 7837583
## 120 2521.745 3404.325 1483.146369 OG Counties 7837583
## 121 2521.745 3404.325 1119.330871 OG Counties 7837583
## 122 2521.745 3404.325 2391.338312 OG Counties 7837583
## 123 2521.745 3404.325 1274.422350 OG Counties 7837583
## 124 2521.745 3404.325 2190.208173 OG Counties 7837583
## 125 2521.745 3404.325 843.087705 OG Counties 7837583
## 126 2521.745 3404.325 1201.597844 OG Counties 7837583
## 127 2521.745 3404.325 3787.810930 OG Counties 7837583
## 128 2521.745 3404.325 1485.110371 OG Counties 7837583
## 129 2521.745 3404.325 616.236743 OG Counties 7837583
## 130 2521.745 3404.325 276.082534 OG Counties 7837583
## 131 2521.745 3404.325 1125.900689 OG Counties 7837583
## 132 2521.745 3404.325 2536.942240 OG Counties 7837583
## 133 2521.745 3404.325 1485.423052 OG Counties 7837583
## 134 2521.745 3404.325 58.633487 OG Counties 7837583
## 135 2521.745 3404.325 502.897990 OG Counties 7837583
## 136 2521.745 3404.325 1006.110540 OG Counties 7837583
## 137 2521.745 3404.325 1652.631612 OG Counties 7837583
## 138 2521.745 3404.325 412.691112 OG Counties 7837583
## 139 2521.745 3404.325 3383.238958 OG Counties 7837583
## 140 2521.745 3404.325 1367.981283 OG Counties 7837583
## 141 2521.745 3404.325 2526.345403 OG Counties 7837583
## 142 2521.745 3404.325 10892.796589 OG Counties 7837583
## 143 2521.745 3404.325 1443.686735 OG Counties 7837583
## 144 2521.745 3404.325 1485.074769 OG Counties 7837583
## 145 2521.745 3404.325 1573.242223 OG Counties 7837583
## 146 2521.745 3404.325 3867.193217 OG Counties 7837583
## 147 2521.745 3404.325 1498.778440 OG Counties 7837583
## 148 2521.745 3404.325 1861.596829 OG Counties 7837583
## 149 2521.745 3404.325 1966.327360 OG Counties 7837583
## 150 2521.745 3404.325 2262.329098 OG Counties 7837583
## 151 2521.745 3404.325 1317.585846 OG Counties 7837583
## 152 2521.745 3404.325 1396.672790 OG Counties 7837583
## 153 2521.745 3404.325 503.150583 OG Counties 7837583
## 154 2521.745 3404.325 979.053253 OG Counties 7837583
## 155 2521.745 3404.325 1260.944133 OG Counties 7837583
## 156 2521.745 3404.325 1128.770713 OG Counties 7837583
## 157 2521.745 3404.325 764.392342 OG Counties 7837583
## 158 2521.745 3404.325 984.957664 OG Counties 7837583
## 159 2521.745 3404.325 1076.483569 OG Counties 7837583
## 160 2521.745 3404.325 2508.809108 OG Counties 7837583
## 161 2521.745 3404.325 3389.930341 OG Counties 7837583
## 162 2521.745 3404.325 1061.582042 OG Counties 7837583
## 163 2521.745 3404.325 1208.975361 OG Counties 7837583
## 164 2521.745 3404.325 1131.824006 OG Counties 7837583
## 165 2521.745 3404.325 1448.389510 OG Counties 7837583
## 166 2521.745 3404.325 1490.736569 OG Counties 7837583
## 167 2521.745 3404.325 1982.132202 OG Counties 7837583
## 168 2521.745 3404.325 1442.278174 OG Counties 7837583
## 169 2521.745 3404.325 1087.647187 OG Counties 7837583
## 170 2521.745 3404.325 1678.852823 OG Counties 7837583
## 171 2521.745 3404.325 1116.955210 OG Counties 7837583
## 172 2521.745 3404.325 1310.029896 OG Counties 7837583
## 173 2521.745 3404.325 1493.353609 OG Counties 7837583
## 174 2521.745 3404.325 1149.099638 OG Counties 7837583
## 175 2521.745 3404.325 2111.714681 OG Counties 7837583
## 176 2521.745 3404.325 1505.853361 OG Counties 7837583
## 177 2521.745 3404.325 1050.237313 OG Counties 7837583
## 178 2521.745 3404.325 2360.374204 OG Counties 7837583
## 179 2521.745 3404.325 1651.527822 OG Counties 7837583
## 180 2521.745 3404.325 1090.557997 OG Counties 7837583
## 181 2521.745 3404.325 2462.475149 OG Counties 7837583
## 182 2521.745 3404.325 1827.390357 OG Counties 7837583
## 183 2521.745 3404.325 1488.577972 OG Counties 7837583
## 184 2521.745 3404.325 1478.328765 OG Counties 7837583
## 185 2521.745 3404.325 178.935337 OG Counties 7837583
## 186 2521.745 3404.325 1482.370692 OG Counties 7837583
## 187 2521.745 3404.325 1102.594581 OG Counties 7837583
## 188 2521.745 3404.325 584.010428 OG Counties 7837583
## 189 2521.745 3404.325 1667.836643 OG Counties 7837583
## 190 2521.745 3404.325 4711.407511 OG Counties 7837583
## 191 2521.745 3404.325 1471.783626 OG Counties 7837583
## 192 2521.745 3404.325 1569.708402 OG Counties 7837583
## 193 2521.745 3404.325 1309.255803 OG Counties 7837583
## 194 2521.745 3404.325 1338.576265 OG Counties 7837583
## 195 2521.745 3404.325 2367.487951 OG Counties 7837583
## 196 2521.745 3404.325 2028.638426 OG Counties 7837583
## 197 2521.745 3404.325 6692.454473 OG Counties 7837583
## 198 2521.745 3404.325 2524.706889 OG Counties 7837583
## 199 2521.745 3404.325 2801.864716 OG Counties 7837583
## 200 2521.745 3404.325 841.760791 OG Counties 7837583
## 201 2521.745 3404.325 890.400134 OG Counties 7837583
## 202 2521.745 3404.325 2295.808080 OG Counties 7837583
## 203 2521.745 3404.325 3101.076820 OG Counties 7837583
## 204 2521.745 3404.325 1532.359653 OG Counties 7837583
## 205 2521.745 3404.325 950.573134 OG Counties 7837583
## 206 2521.745 3404.325 1490.272651 OG Counties 7837583
## 207 2521.745 3404.325 1065.099255 OG Counties 7837583
## 208 2521.745 3404.325 1553.979741 OG Counties 7837583
## 209 2521.745 3404.325 1348.470663 OG Counties 7837583
## 210 2521.745 3404.325 793.702841 OG Counties 7837583
## 211 2521.745 3404.325 1983.428407 OG Counties 7837583
## 212 2521.745 3404.325 1296.143761 OG Counties 7837583
## 213 2521.745 3404.325 2395.216338 OG Counties 7837583
## 214 2521.745 3404.325 2387.929738 OG Counties 7837583
## 215 2521.745 3404.325 1048.254451 OG Counties 7837583
## 216 2521.745 3404.325 2371.536989 OG Counties 7837583
## 217 2521.745 3404.325 1151.762368 OG Counties 7837583
## 218 2521.745 3404.325 1038.541342 OG Counties 7837583
## 219 2521.745 3404.325 1079.478420 OG Counties 7837583
## 220 2521.745 3404.325 1354.711503 OG Counties 7837583
## 221 2521.745 3404.325 1283.739301 OG Counties 7837583
## 222 2521.745 3404.325 3371.166554 OG Counties 7837583
## 223 2521.745 3404.325 1056.408376 OG Counties 7837583
## 224 2521.745 3404.325 3912.653407 OG Counties 7837583
## 225 2521.745 3404.325 1639.096193 OG Counties 7837583
## 226 2521.745 3404.325 2115.551421 OG Counties 7837583
## 227 2521.745 3404.325 2275.988840 OG Counties 7837583
## 228 2521.745 3404.325 2236.751153 OG Counties 7837583
## 229 2521.745 3404.325 1427.785420 OG Counties 7837583
## 230 2521.745 3404.325 6733.491181 OG Counties 7837583
## 231 2521.745 3404.325 11199.206902 OG Counties 7837583
## 232 2521.745 3404.325 1428.738641 OG Counties 7837583
## 233 2521.745 3404.325 1866.541304 OG Counties 7837583
## 234 2521.745 3404.325 1477.902383 OG Counties 7837583
## 235 2521.745 3404.325 2575.231232 OG Counties 7837583
## 236 2521.745 3404.325 869.043644 OG Counties 7837583
## 237 2521.745 3404.325 2407.860223 OG Counties 7837583
## 238 2521.745 3404.325 1376.556811 OG Counties 7837583
## 239 2521.745 3404.325 1158.373628 OG Counties 7837583
## 240 2521.745 3404.325 1856.661297 OG Counties 7837583
## 241 2521.745 3404.325 3370.199804 OG Counties 7837583
## 242 2521.745 3404.325 1493.664658 OG Counties 7837583
## 243 2521.745 3404.325 1310.641304 OG Counties 7837583
## 244 2521.745 3404.325 1367.221354 OG Counties 7837583
## 245 2521.745 3404.325 1241.179290 OG Counties 7837583
## 246 2521.745 3404.325 2333.236208 OG Counties 7837583
## 247 2521.745 3404.325 1871.475767 OG Counties 7837583
## 248 2521.745 3404.325 1588.611158 OG Counties 7837583
## 249 2521.745 3404.325 1259.443007 OG Counties 7837583
## 250 2521.745 3404.325 2467.372100 OG Counties 7837583
## 251 2521.745 3404.325 1933.354105 OG Counties 7837583
## 252 2521.745 3404.325 5370.645709 OG Counties 7837583
## 253 2521.745 3404.325 1489.865384 OG Counties 7837583
## 254 2521.745 3404.325 19.354594 OG Counties 7837583
## 255 2521.745 3404.325 1173.629094 OG Counties 7837583
## 256 2521.745 3404.325 1382.639444 OG Counties 7837583
## 257 2521.745 3404.325 2935.798031 OG Counties 7837583
## 258 2521.745 3404.325 1291.651111 OG Counties 7837583
## 259 2521.745 3404.325 2601.621937 OG Counties 7837583
## 260 2521.745 3404.325 2338.929440 OG Counties 7837583
## 261 2521.745 3404.325 1540.641278 OG Counties 7837583
## 262 2521.745 3404.325 3704.170648 OG Counties 7837583
## 263 2521.745 3404.325 35.183258 OG Counties 7837583
## 264 2521.745 3404.325 1749.094351 OG Counties 7837583
## 265 2521.745 3404.325 47.663329 OG Counties 7837583
## 266 2521.745 3404.325 1481.756702 OG Counties 7837583
## 267 2521.745 3404.325 1029.732620 OG Counties 7837583
## 268 2521.745 3404.325 1855.492999 OG Counties 7837583
## 269 2521.745 3404.325 2822.385755 OG Counties 7837583
## 270 2521.745 3404.325 4620.424924 OG Counties 7837583
## 271 2521.745 3404.325 5406.400375 OG Counties 7837583
## 272 2521.745 3404.325 3770.764712 OG Counties 7837583
## 273 2521.745 3404.325 1492.729678 OG Counties 7837583
## 274 2521.745 3404.325 34.024908 OG Counties 7837583
## 275 2521.745 3404.325 688.511536 OG Counties 7837583
## 276 2521.745 3404.325 631.745836 OG Counties 7837583
## 277 2521.745 3404.325 1529.521112 OG Counties 7837583
## 278 2521.745 3404.325 2991.363697 OG Counties 7837583
## 279 2521.745 3404.325 1664.572963 OG Counties 7837583
## 280 2521.745 3404.325 1505.992512 OG Counties 7837583
## 281 2521.745 3404.325 7600.112385 OG Counties 7837583
## 282 2521.745 3404.325 882.506201 OG Counties 7837583
## 283 2521.745 3404.325 4391.421279 OG Counties 7837583
## 284 2521.745 3404.325 1512.394622 OG Counties 7837583
## 285 2521.745 3404.325 2364.669902 OG Counties 7837583
## 286 2521.745 3404.325 1177.895729 OG Counties 7837583
## 287 2521.745 3404.325 2868.088699 OG Counties 7837583
## 288 2521.745 3404.325 1306.457954 OG Counties 7837583
## 289 2521.745 3404.325 2432.826809 OG Counties 7837583
## 290 2521.745 3404.325 3869.239039 OG Counties 7837583
## 291 2521.745 3404.325 1509.340514 OG Counties 7837583
## 292 2521.745 3404.325 1502.506481 OG Counties 7837583
## 293 2521.745 3404.325 1318.877672 OG Counties 7837583
## 294 2521.745 3404.325 2782.187938 OG Counties 7837583
## 295 2521.745 3404.325 1559.590663 OG Counties 7837583
## 296 2521.745 3404.325 1100.473322 OG Counties 7837583
## 297 2521.745 3404.325 1280.121730 OG Counties 7837583
## 298 2521.745 3404.325 2427.495622 OG Counties 7837583
## 299 2521.745 3404.325 57.139365 OG Counties 7837583
## 300 2521.745 3404.325 2315.268349 OG Counties 7837583
## 301 2521.745 3404.325 2337.348231 OG Counties 7837583
## 302 2521.745 3404.325 3047.152453 OG Counties 7837583
## 303 2521.745 3404.325 1815.031375 OG Counties 7837583
## 304 2521.745 3404.325 2520.493611 OG Counties 7837583
## 305 2521.745 3404.325 2387.045552 OG Counties 7837583
## 306 2521.745 3404.325 2341.761671 OG Counties 7837583
## 307 2521.745 3404.325 2358.885054 OG Counties 7837583
## 308 2521.745 3404.325 1671.016085 OG Counties 7837583
## 309 2521.745 3404.325 1739.152801 OG Counties 7837583
## 310 2521.745 3404.325 1528.444460 OG Counties 7837583
## 311 2521.745 3404.325 2227.255922 OG Counties 7837583
## 312 2521.745 3404.325 1391.836123 OG Counties 7837583
## 313 2521.745 3404.325 1448.002763 OG Counties 7837583
## 314 2521.745 3404.325 903.414948 OG Counties 7837583
## 315 2521.745 3404.325 134.853062 OG Counties 7837583
## 316 2521.745 3404.325 1549.812833 OG Counties 7837583
## 317 2521.745 3404.325 1913.867409 OG Counties 7837583
## 318 2521.745 3404.325 284.913117 OG Counties 7837583
## 319 2521.745 3404.325 517.570978 OG Counties 7837583
## 320 2521.745 3404.325 865.424079 OG Counties 7837583
## 321 2521.745 3404.325 2799.324188 OG Counties 7837583
## 322 2521.745 3404.325 2078.626525 OG Counties 7837583
## 323 2521.745 3404.325 2799.898015 OG Counties 7837583
## 324 2521.745 3404.325 2352.443949 OG Counties 7837583
## 325 2521.745 3404.325 1170.504664 OG Counties 7837583
## 326 2521.745 3404.325 2383.368997 OG Counties 7837583
## 327 2521.745 3404.325 495.857570 OG Counties 7837583
## 328 2521.745 3404.325 1973.252494 OG Counties 7837583
## 329 2521.745 3404.325 1164.824827 OG Counties 7837583
## 330 2521.745 3404.325 2564.254482 OG Counties 7837583
## 331 2521.745 3404.325 517.353039 OG Counties 7837583
## 332 2521.745 3404.325 779.409579 OG Counties 7837583
## 333 2521.745 3404.325 1033.635553 OG Counties 7837583
## 334 2521.745 3404.325 3504.411931 OG Counties 7837583
## 335 2521.745 3404.325 2095.626846 OG Counties 7837583
## 336 2521.745 3404.325 1953.475028 OG Counties 7837583
## 337 2521.745 3404.325 1085.306350 OG Counties 7837583
## 338 2521.745 3404.325 5428.962249 OG Counties 7837583
## 339 2521.745 3404.325 1139.181700 OG Counties 7837583
## 340 2521.745 3404.325 1327.021961 OG Counties 7837583
## 341 2521.745 3404.325 2084.103797 OG Counties 7837583
## 342 2521.745 3404.325 1487.253741 OG Counties 7837583
## 343 2521.745 3404.325 1827.249025 OG Counties 7837583
## 344 2521.745 3404.325 935.586498 OG Counties 7837583
## 345 2521.745 3404.325 1861.097298 OG Counties 7837583
## 346 2521.745 3404.325 1860.576640 OG Counties 7837583
## 347 2521.745 3404.325 2349.414347 OG Counties 7837583
## 348 2521.745 3404.325 809.708534 OG Counties 7837583
## 349 2521.745 3404.325 1146.808753 OG Counties 7837583
## 350 2521.745 3404.325 2318.196312 OG Counties 7837583
## 351 2521.745 3404.325 1488.790845 OG Counties 7837583
## 352 2521.745 3404.325 2707.256562 OG Counties 7837583
## 353 2521.745 3404.325 959.534866 OG Counties 7837583
## 354 2521.745 3404.325 1130.193840 OG Counties 7837583
## 355 2521.745 3404.325 966.702256 OG Counties 7837583
## 356 2521.745 3404.325 976.598251 OG Counties 7837583
## 357 2521.745 3404.325 1664.167817 OG Counties 7837583
## 358 2521.745 3404.325 2482.642067 OG Counties 7837583
## 359 2521.745 3404.325 1859.899686 OG Counties 7837583
## 360 2521.745 3404.325 2344.145790 OG Counties 7837583
## 361 2521.745 3404.325 1866.327609 OG Counties 7837583
## 362 2521.745 3404.325 2301.799020 OG Counties 7837583
## 363 2521.745 3404.325 3185.593447 OG Counties 7837583
## 364 2521.745 3404.325 1711.287833 OG Counties 7837583
## 365 2521.745 3404.325 1496.721156 OG Counties 7837583
## 366 2521.745 3404.325 14.288320 OG Counties 7837583
## 367 2521.745 3404.325 2124.299832 OG Counties 7837583
## 368 2521.745 3404.325 1129.699067 OG Counties 7837583
## 369 2521.745 3404.325 3749.411966 OG Counties 7837583
## 370 2521.745 3404.325 464.403601 OG Counties 7837583
## 371 2521.745 3404.325 1436.572270 OG Counties 7837583
## 372 2521.745 3404.325 1890.631093 OG Counties 7837583
## 373 2521.745 3404.325 737.273634 OG Counties 7837583
## 374 2521.745 3404.325 1487.136696 OG Counties 7837583
## 375 2521.745 3404.325 3147.336605 OG Counties 7837583
## 376 2521.745 3404.325 1029.021426 OG Counties 7837583
## 377 2521.745 3404.325 957.041511 OG Counties 7837583
## 378 2521.745 3404.325 1572.183160 OG Counties 7837583
## 379 2521.745 3404.325 2299.060747 OG Counties 7837583
## 380 2521.745 3404.325 340.077084 OG Counties 7837583
## 381 2521.745 3404.325 2158.508973 OG Counties 7837583
## 382 2521.745 3404.325 1687.139373 OG Counties 7837583
## 383 2521.745 3404.325 834.495869 OG Counties 7837583
## 384 2521.745 3404.325 1080.509461 OG Counties 7837583
## 385 2521.745 3404.325 2304.332656 OG Counties 7837583
## 386 2521.745 3404.325 2529.322561 OG Counties 7837583
## 387 2521.745 3404.325 1369.645157 OG Counties 7837583
## 388 2521.745 3404.325 1863.079027 OG Counties 7837583
## 389 2521.745 3404.325 1595.166851 OG Counties 7837583
## 390 2521.745 3404.325 1064.132744 OG Counties 7837583
## 391 2521.745 3404.325 1794.517308 OG Counties 7837583
## 392 2521.745 3404.325 1252.559457 OG Counties 7837583
## 393 2521.745 3404.325 811.047522 OG Counties 7837583
## 394 2521.745 3404.325 824.304663 OG Counties 7837583
## 395 2521.745 3404.325 1648.761158 OG Counties 7837583
## 396 2521.745 3404.325 1619.106735 OG Counties 7837583
## 397 2521.745 3404.325 1164.230940 OG Counties 7837583
## 398 2521.745 3404.325 1869.806325 OG Counties 7837583
## 399 2521.745 3404.325 1273.408398 OG Counties 7837583
## 400 2521.745 3404.325 3054.484035 OG Counties 7837583
## 401 2521.745 3404.325 1525.999931 OG Counties 7837583
## 402 2521.745 3404.325 2067.975200 OG Counties 7837583
## 403 2521.745 3404.325 1310.326001 OG Counties 7837583
## 404 2521.745 3404.325 1663.851513 OG Counties 7837583
## 405 2521.745 3404.325 2332.743347 OG Counties 7837583
## 406 2521.745 3404.325 1406.457990 OG Counties 7837583
## 407 2521.745 3404.325 1867.230629 OG Counties 7837583
## 408 2521.745 3404.325 378.389704 OG Counties 7837583
## 409 2521.745 3404.325 2354.890740 OG Counties 7837583
## 410 2521.745 3404.325 1848.723223 OG Counties 7837583
## 411 2521.745 3404.325 2017.400724 OG Counties 7837583
## 412 2521.745 3404.325 1560.971690 OG Counties 7837583
## 413 2521.745 3404.325 2081.602237 OG Counties 7837583
## 414 2521.745 3404.325 1218.756864 OG Counties 7837583
## 415 2521.745 3404.325 2007.138465 OG Counties 7837583
## 416 2521.745 3404.325 2203.944484 OG Counties 7837583
## 417 2521.745 3404.325 1660.330452 OG Counties 7837583
## 418 2521.745 3404.325 1039.525639 OG Counties 7837583
## 419 2521.745 3404.325 650.314136 OG Counties 7837583
## 420 2521.745 3404.325 519.229375 OG Counties 7837583
## 421 2521.745 3404.325 311.947385 OG Counties 7837583
## 422 2521.745 3404.325 1415.199166 OG Counties 7837583
## 423 2521.745 3404.325 1319.047532 OG Counties 7837583
## 424 2521.745 3404.325 1161.674364 OG Counties 7837583
## 425 2521.745 3404.325 2030.279970 OG Counties 7837583
## 426 2521.745 3404.325 1126.242504 OG Counties 7837583
## 427 2521.745 3404.325 657.691895 OG Counties 7837583
## 428 2521.745 3404.325 1479.159709 OG Counties 7837583
## 429 2521.745 3404.325 1866.269235 OG Counties 7837583
## 430 2521.745 3404.325 1291.248769 OG Counties 7837583
## 431 2521.745 3404.325 1982.408095 OG Counties 7837583
## 432 2521.745 3404.325 2387.849033 OG Counties 7837583
## 433 2521.745 3404.325 1378.363575 OG Counties 7837583
## 434 2521.745 3404.325 1386.425656 OG Counties 7837583
## 435 2521.745 3404.325 1434.707319 OG Counties 7837583
## 436 2521.745 3404.325 2333.548304 OG Counties 7837583
## 437 2521.745 3404.325 1324.073995 OG Counties 7837583
## 438 2521.745 3404.325 1860.919935 OG Counties 7837583
## 439 2521.745 3404.325 3258.921079 OG Counties 7837583
## 440 2521.745 3404.325 1203.942819 OG Counties 7837583
## 441 2521.745 3404.325 1324.339253 OG Counties 7837583
## 442 2521.745 3404.325 2331.004456 OG Counties 7837583
## 443 2521.745 3404.325 1456.121074 OG Counties 7837583
## 444 2521.745 3404.325 2297.015713 OG Counties 7837583
## 445 2521.745 3404.325 6208.225722 OG Counties 7837583
## 446 2521.745 3404.325 1318.189017 OG Counties 7837583
## 447 2521.745 3404.325 1263.351715 OG Counties 7837583
## 448 2521.745 3404.325 942.758222 OG Counties 7837583
## 449 2521.745 3404.325 778.711508 OG Counties 7837583
## 450 2521.745 3404.325 1429.251180 OG Counties 7837583
## 451 2521.745 3404.325 2627.170464 OG Counties 7837583
## 452 2521.745 3404.325 1797.528347 OG Counties 7837583
## 453 2521.745 3404.325 1457.112264 OG Counties 7837583
## 454 2521.745 3404.325 2370.807021 OG Counties 7837583
## 455 2521.745 3404.325 481.243492 OG Counties 7837583
## 456 2521.745 3404.325 1696.384247 OG Counties 7837583
## 457 2521.745 3404.325 1624.172604 OG Counties 7837583
## 458 2521.745 3404.325 1853.183715 OG Counties 7837583
## 459 2521.745 3404.325 1349.761904 OG Counties 7837583
## 460 2521.745 3404.325 1862.312474 OG Counties 7837583
## 461 2521.745 3404.325 983.272729 OG Counties 7837583
## 462 2521.745 3404.325 948.498213 OG Counties 7837583
## 463 2521.745 3404.325 596.329903 OG Counties 7837583
## 464 2521.745 3404.325 1179.457994 OG Counties 7837583
## 465 2521.745 3404.325 755.871924 OG Counties 7837583
## 466 2521.745 3404.325 701.262881 OG Counties 7837583
## 467 2521.745 3404.325 2349.225333 OG Counties 7837583
## 468 2521.745 3404.325 1303.956531 OG Counties 7837583
## 469 2521.745 3404.325 1225.137940 OG Counties 7837583
## 470 2521.745 3404.325 1875.187308 OG Counties 7837583
## 471 2521.745 3404.325 1436.154378 OG Counties 7837583
## 472 2521.745 3404.325 976.229803 OG Counties 7837583
## 473 2521.745 3404.325 1406.043828 OG Counties 7837583
## 474 2521.745 3404.325 2280.523200 OG Counties 7837583
## 475 2521.745 3404.325 832.656637 OG Counties 7837583
## 476 2521.745 3404.325 1169.319474 OG Counties 7837583
## 477 2521.745 3404.325 1424.993396 OG Counties 7837583
## 478 2521.745 3404.325 1426.743895 OG Counties 7837583
## 479 2521.745 3404.325 1480.760713 OG Counties 7837583
## 480 2521.745 3404.325 2495.706910 OG Counties 7837583
## 481 2521.745 3404.325 1795.674648 OG Counties 7837583
## 482 2521.745 3404.325 2143.645926 OG Counties 7837583
## 483 2521.745 3404.325 1049.935697 OG Counties 7837583
## 484 2521.745 3404.325 2457.435271 OG Counties 7837583
## 485 2521.745 3404.325 1216.652157 OG Counties 7837583
## 486 2521.745 3404.325 444.145946 OG Counties 7837583
## 487 2521.745 3404.325 1143.607188 OG Counties 7837583
## 488 2521.745 3404.325 2123.586108 OG Counties 7837583
## 489 2521.745 3404.325 1541.984595 OG Counties 7837583
## 490 2521.745 3404.325 3898.522734 OG Counties 7837583
## 491 2521.745 3404.325 1341.476549 OG Counties 7837583
## 492 2521.745 3404.325 2747.291090 OG Counties 7837583
## 493 2521.745 3404.325 661.144982 OG Counties 7837583
## 494 2521.745 3404.325 889.822902 OG Counties 7837583
## 495 2521.745 3404.325 1491.642424 OG Counties 7837583
## 496 2521.745 3404.325 2557.986406 OG Counties 7837583
## 497 2521.745 3404.325 2333.609586 OG Counties 7837583
## 498 2521.745 3404.325 1625.137163 OG Counties 7837583
## 499 2521.745 3404.325 1709.005552 OG Counties 7837583
## 500 2521.745 3404.325 2571.851776 OG Counties 7837583
## 501 2521.745 3404.325 1861.828415 OG Counties 7837583
## 502 2521.745 3404.325 1274.589157 OG Counties 7837583
## 503 2521.745 3404.325 2570.873748 OG Counties 7837583
## 504 2521.745 3404.325 1782.335081 OG Counties 7837583
## 505 2521.745 3404.325 1166.881609 OG Counties 7837583
## 506 2521.745 3404.325 2478.451798 OG Counties 7837583
## 507 2521.745 3404.325 1505.803855 OG Counties 7837583
## 508 2521.745 3404.325 1488.498250 OG Counties 7837583
## 509 2521.745 3404.325 3459.071234 OG Counties 7837583
## 510 2521.745 3404.325 1140.839733 OG Counties 7837583
## 511 2521.745 3404.325 2395.842392 OG Counties 7837583
## 512 2521.745 3404.325 1124.617649 OG Counties 7837583
## 513 2521.745 3404.325 1117.061453 OG Counties 7837583
## 514 2521.745 3404.325 2342.190296 OG Counties 7837583
## 515 2521.745 3404.325 3289.002973 OG Counties 7837583
## 516 2521.745 3404.325 1044.209271 OG Counties 7837583
## 517 2521.745 3404.325 2357.421118 OG Counties 7837583
## 518 2521.745 3404.325 2245.169853 OG Counties 7837583
## 519 2521.745 3404.325 1427.070712 OG Counties 7837583
## 520 2521.745 3404.325 2116.347424 OG Counties 7837583
## 521 2521.745 3404.325 1495.164787 OG Counties 7837583
## 522 2521.745 3404.325 2643.178012 OG Counties 7837583
## 523 2521.745 3404.325 2559.266269 OG Counties 7837583
## 524 2521.745 3404.325 1247.999811 OG Counties 7837583
## 525 2521.745 3404.325 2339.577473 OG Counties 7837583
## 526 2521.745 3404.325 1520.388140 OG Counties 7837583
## 527 2521.745 3404.325 1602.209033 OG Counties 7837583
## 528 2521.745 3404.325 2204.281471 OG Counties 7837583
## 529 2521.745 3404.325 1344.661494 OG Counties 7837583
## 530 2521.745 3404.325 985.973219 OG Counties 7837583
## 531 2521.745 3404.325 2332.943675 OG Counties 7837583
## 532 2521.745 3404.325 3096.975624 OG Counties 7837583
## 533 2521.745 3404.325 1171.299496 OG Counties 7837583
## 534 2521.745 3404.325 4807.083634 OG Counties 7837583
## 535 2521.745 3404.325 1649.317582 OG Counties 7837583
## 536 2521.745 3404.325 1593.575678 OG Counties 7837583
## 537 2521.745 3404.325 1885.960562 OG Counties 7837583
## 538 2521.745 3404.325 1169.838993 OG Counties 7837583
## 539 2521.745 3404.325 6511.354653 OG Counties 7837583
## 540 2521.745 3404.325 1562.090559 OG Counties 7837583
## 541 2521.745 3404.325 539.274951 OG Counties 7837583
## 542 2521.745 3404.325 4590.045084 OG Counties 7837583
## 543 2521.745 3404.325 1072.427694 OG Counties 7837583
## 544 2521.745 3404.325 1172.542476 OG Counties 7837583
## 545 2521.745 3404.325 1358.906737 OG Counties 7837583
## 546 2521.745 3404.325 1216.471074 OG Counties 7837583
## 547 2521.745 3404.325 2719.692654 OG Counties 7837583
## 548 2521.745 3404.325 1481.327438 OG Counties 7837583
## 549 2521.745 3404.325 438.008848 OG Counties 7837583
## 550 2521.745 3404.325 1862.170350 OG Counties 7837583
## 551 2521.745 3404.325 2413.854794 OG Counties 7837583
## 552 2521.745 3404.325 9914.990928 OG Counties 7837583
## 553 2521.745 3404.325 1861.770424 OG Counties 7837583
## 554 2521.745 3404.325 2415.918841 OG Counties 7837583
## 555 2521.745 3404.325 1287.683534 OG Counties 7837583
## 556 2521.745 3404.325 1087.887974 OG Counties 7837583
## 557 2521.745 3404.325 1022.625357 OG Counties 7837583
## 558 2521.745 3404.325 2563.577270 OG Counties 7837583
## 559 2521.745 3404.325 2330.079085 OG Counties 7837583
## 560 2521.745 3404.325 1049.652454 OG Counties 7837583
## 561 2521.745 3404.325 544.493983 OG Counties 7837583
## 562 2521.745 3404.325 1123.649681 OG Counties 7837583
## 563 2521.745 3404.325 894.725071 OG Counties 7837583
## 564 2521.745 3404.325 2222.362117 OG Counties 7837583
## 565 2521.745 3404.325 959.982635 OG Counties 7837583
## 566 2521.745 3404.325 832.646536 OG Counties 7837583
## 567 2521.745 3404.325 1576.046648 OG Counties 7837583
## 568 2521.745 3404.325 3065.881972 OG Counties 7837583
## 569 2521.745 3404.325 1500.939664 OG Counties 7837583
## 570 2521.745 3404.325 1862.584943 OG Counties 7837583
## 571 2521.745 3404.325 1378.594048 OG Counties 7837583
## 572 2521.745 3404.325 605.777321 OG Counties 7837583
## 573 2521.745 3404.325 1985.359232 OG Counties 7837583
## 574 2521.745 3404.325 2235.849852 OG Counties 7837583
## 575 2521.745 3404.325 2177.151341 OG Counties 7837583
## 576 2521.745 3404.325 4762.129355 OG Counties 7837583
## 577 2521.745 3404.325 1483.596730 OG Counties 7837583
## 578 2521.745 3404.325 2072.443730 OG Counties 7837583
## 579 2521.745 3404.325 2733.572711 OG Counties 7837583
## 580 2521.745 3404.325 2369.252668 OG Counties 7837583
## 581 2521.745 3404.325 965.093929 OG Counties 7837583
## 582 2521.745 3404.325 1865.725169 OG Counties 7837583
## 583 2521.745 3404.325 905.043550 OG Counties 7837583
## 584 2521.745 3404.325 1788.782749 OG Counties 7837583
## 585 2521.745 3404.325 1466.017576 OG Counties 7837583
## 586 2521.745 3404.325 102.560841 OG Counties 7837583
## 587 2521.745 3404.325 1246.751816 OG Counties 7837583
## 588 2521.745 3404.325 256.823463 OG Counties 7837583
## 589 2521.745 3404.325 1394.139030 OG Counties 7837583
## 590 2521.745 3404.325 978.714975 OG Counties 7837583
## 591 2521.745 3404.325 1692.622431 OG Counties 7837583
## 592 2521.745 3404.325 1102.650886 OG Counties 7837583
## 593 2521.745 3404.325 1348.664941 OG Counties 7837583
## 594 2521.745 3404.325 1148.607550 OG Counties 7837583
## 595 2521.745 3404.325 1989.334844 OG Counties 7837583
## 596 2521.745 3404.325 24999.757427 OG Counties 7837583
## 597 2521.745 3404.325 6759.490718 OG Counties 7837583
## 598 2521.745 3404.325 2447.827718 OG Counties 7837583
## 599 2521.745 3404.325 5865.901125 OG Counties 7837583
## 600 2521.745 3404.325 4307.133601 OG Counties 7837583
## 601 2521.745 3404.325 17677.681815 OG Counties 7837583
## 602 2521.745 3404.325 1472.214755 OG Counties 7837583
## 603 2521.745 3404.325 1312.852376 OG Counties 7837583
## 604 2521.745 3404.325 1506.260490 OG Counties 7837583
## 605 2521.745 3404.325 1953.530916 OG Counties 7837583
## 606 2521.745 3404.325 1095.306070 OG Counties 7837583
## 607 2521.745 3404.325 4605.457094 OG Counties 7837583
## 608 2521.745 3404.325 8421.391767 OG Counties 7837583
## 609 2521.745 3404.325 5140.395907 OG Counties 7837583
## 610 2521.745 3404.325 1173.636629 OG Counties 7837583
## 611 2521.745 3404.325 1150.326855 OG Counties 7837583
## 612 2521.745 3404.325 2633.952624 OG Counties 7837583
## 613 2521.745 3404.325 2710.593188 OG Counties 7837583
## 614 2521.745 3404.325 1128.454734 OG Counties 7837583
## 615 2521.745 3404.325 1869.615372 OG Counties 7837583
## 616 2521.745 3404.325 782.453530 OG Counties 7837583
## 617 2521.745 3404.325 1807.122558 OG Counties 7837583
## 618 2521.745 3404.325 1145.476260 OG Counties 7837583
## 619 2521.745 3404.325 11263.824259 OG Counties 7837583
## 620 2521.745 3404.325 5007.703844 OG Counties 7837583
## 621 2521.745 3404.325 1129.433861 OG Counties 7837583
## 622 2521.745 3404.325 1485.146273 OG Counties 7837583
## 623 2521.745 3404.325 2492.042516 OG Counties 7837583
## 624 2521.745 3404.325 857.761360 OG Counties 7837583
## 625 2521.745 3404.325 1339.393496 OG Counties 7837583
## 626 2521.745 3404.325 4035.588663 OG Counties 7837583
## 627 2521.745 3404.325 728.027663 OG Counties 7837583
## 628 2521.745 3404.325 1315.541583 OG Counties 7837583
## 629 2521.745 3404.325 1794.521747 OG Counties 7837583
## 630 2521.745 3404.325 897.005268 OG Counties 7837583
## 631 2521.745 3404.325 3214.084430 OG Counties 7837583
## 632 2521.745 3404.325 2144.755942 OG Counties 7837583
## 633 2521.745 3404.325 2627.328533 OG Counties 7837583
## 634 2521.745 3404.325 644.568223 OG Counties 7837583
## 635 2521.745 3404.325 2275.766959 OG Counties 7837583
## 636 2521.745 3404.325 1834.056089 OG Counties 7837583
## 637 2521.745 3404.325 1259.934806 OG Counties 7837583
## 638 2521.745 3404.325 3618.774811 OG Counties 7837583
## 639 2521.745 3404.325 1059.921895 OG Counties 7837583
## 640 2521.745 3404.325 1696.752053 OG Counties 7837583
## 641 2521.745 3404.325 990.583869 OG Counties 7837583
## 642 2521.745 3404.325 1493.544920 OG Counties 7837583
## 643 2521.745 3404.325 1451.019902 OG Counties 7837583
## 644 2521.745 3404.325 5754.772789 OG Counties 7837583
## 645 2521.745 3404.325 1254.671463 OG Counties 7837583
## 646 2521.745 3404.325 2809.970923 OG Counties 7837583
## 647 2521.745 3404.325 1980.012025 OG Counties 7837583
## 648 2521.745 3404.325 740.935755 OG Counties 7837583
## 649 2521.745 3404.325 1008.455950 OG Counties 7837583
## 650 2521.745 3404.325 1553.930849 OG Counties 7837583
## 651 2521.745 3404.325 1500.332513 OG Counties 7837583
## 652 2521.745 3404.325 1106.510905 OG Counties 7837583
## 653 2521.745 3404.325 1971.255028 OG Counties 7837583
## 654 2521.745 3404.325 297.456457 OG Counties 7837583
## 655 2521.745 3404.325 938.702958 OG Counties 7837583
## 656 2521.745 3404.325 1520.931209 OG Counties 7837583
## 657 2521.745 3404.325 1710.705902 OG Counties 7837583
## 658 2521.745 3404.325 2577.449229 OG Counties 7837583
## 659 2521.745 3404.325 897.486156 OG Counties 7837583
## 660 2521.745 3404.325 5286.379070 OG Counties 7837583
## 661 2521.745 3404.325 1090.952546 OG Counties 7837583
## 662 2521.745 3404.325 1123.920137 OG Counties 7837583
## 663 2521.745 3404.325 1081.683012 OG Counties 7837583
## 664 2521.745 3404.325 2312.783588 OG Counties 7837583
## 665 2521.745 3404.325 1860.153914 OG Counties 7837583
## 666 2521.745 3404.325 1378.180097 OG Counties 7837583
## 667 2521.745 3404.325 794.701376 OG Counties 7837583
## 668 2521.745 3404.325 4969.687102 OG Counties 7837583
## 669 2521.745 3404.325 4988.262141 OG Counties 7837583
## 670 2521.745 3404.325 826.502043 OG Counties 7837583
## 671 2521.745 3404.325 1458.262353 OG Counties 7837583
## 672 2521.745 3404.325 1872.413180 OG Counties 7837583
## 673 2521.745 3404.325 1741.356461 OG Counties 7837583
## 674 2521.745 3404.325 820.102800 OG Counties 7837583
## 675 2521.745 3404.325 1168.843119 OG Counties 7837583
## 676 2521.745 3404.325 6043.308417 OG Counties 7837583
## 677 2521.745 3404.325 935.663280 OG Counties 7837583
## 678 2521.745 3404.325 2360.185051 OG Counties 7837583
## 679 2521.745 3404.325 2381.586079 OG Counties 7837583
## 680 2521.745 3404.325 1531.012342 OG Counties 7837583
## 681 2521.745 3404.325 1830.722269 OG Counties 7837583
## 682 2521.745 3404.325 1136.564877 OG Counties 7837583
## 683 2521.745 3404.325 800.054395 OG Counties 7837583
## 684 2521.745 3404.325 1479.316526 OG Counties 7837583
## 685 2521.745 3404.325 1932.298668 OG Counties 7837583
## 686 2521.745 3404.325 2282.539937 OG Counties 7837583
## 687 2521.745 3404.325 1610.894291 OG Counties 7837583
## 688 2521.745 3404.325 1957.172365 OG Counties 7837583
## 689 2521.745 3404.325 1160.663285 OG Counties 7837583
## 690 2521.745 3404.325 1580.997549 OG Counties 7837583
## 691 2521.745 3404.325 599.979582 OG Counties 7837583
## 692 2521.745 3404.325 1812.565326 OG Counties 7837583
## 693 2521.745 3404.325 1694.530507 OG Counties 7837583
## 694 2521.745 3404.325 1492.013391 OG Counties 7837583
## 695 2521.745 3404.325 2948.031387 OG Counties 7837583
## 696 2521.745 3404.325 4767.793597 OG Counties 7837583
## 697 2521.745 3404.325 2275.622840 OG Counties 7837583
## 698 2521.745 3404.325 1992.833119 OG Counties 7837583
## 699 2521.745 3404.325 2541.517905 OG Counties 7837583
## 700 2521.745 3404.325 1626.526889 OG Counties 7837583
## 701 2521.745 3404.325 3089.315846 OG Counties 7837583
## 702 2521.745 3404.325 1335.174660 OG Counties 7837583
## 703 2521.745 3404.325 851.752075 OG Counties 7837583
## 704 2521.745 3404.325 1875.923828 OG Counties 7837583
## 705 2521.745 3404.325 1482.838166 OG Counties 7837583
## 706 2521.745 3404.325 1101.467566 OG Counties 7837583
## 707 2521.745 3404.325 1303.805031 OG Counties 7837583
## 708 2521.745 3404.325 1314.983013 OG Counties 7837583
## 709 2521.745 3404.325 1795.263786 OG Counties 7837583
## 710 2521.745 3404.325 1992.584115 OG Counties 7837583
## 711 2521.745 3404.325 6259.978460 OG Counties 7837583
## 712 2521.745 3404.325 1184.045176 OG Counties 7837583
## 713 2521.745 3404.325 946.488579 OG Counties 7837583
## 714 2521.745 3404.325 2463.745038 OG Counties 7837583
## 715 2521.745 3404.325 1216.662192 OG Counties 7837583
## 716 2521.745 3404.325 1236.195662 OG Counties 7837583
## 717 2521.745 3404.325 1677.371824 OG Counties 7837583
## 718 2521.745 3404.325 1601.016889 OG Counties 7837583
## 719 2521.745 3404.325 867.825060 OG Counties 7837583
## 720 2521.745 3404.325 889.650588 OG Counties 7837583
## 721 2521.745 3404.325 1446.098710 OG Counties 7837583
## 722 2521.745 3404.325 7283.443470 OG Counties 7837583
## 723 2521.745 3404.325 8905.408794 OG Counties 7837583
## 724 2521.745 3404.325 1659.074242 OG Counties 7837583
## 725 2521.745 3404.325 1269.249080 OG Counties 7837583
## 726 2521.745 3404.325 2225.356939 OG Counties 7837583
## 727 2521.745 3404.325 1963.699914 OG Counties 7837583
## 728 2521.745 3404.325 17952.427408 OG Counties 7837583
## 729 2521.745 3404.325 3078.507477 OG Counties 7837583
## 730 2521.745 3404.325 12945.917176 OG Counties 7837583
## 731 2521.745 3404.325 3370.177748 OG Counties 7837583
## 732 2521.745 3404.325 3217.755302 OG Counties 7837583
## 733 2521.745 3404.325 1933.485807 OG Counties 7837583
## 734 2521.745 3404.325 805.332907 OG Counties 7837583
## 735 2521.745 3404.325 2846.121075 OG Counties 7837583
## 736 2521.745 3404.325 4747.292510 OG Counties 7837583
## 737 2521.745 3404.325 741.935487 OG Counties 7837583
## 738 2521.745 3404.325 852.699593 OG Counties 7837583
## 739 2521.745 3404.325 1757.939003 OG Counties 7837583
## 740 2521.745 3404.325 3890.510824 OG Counties 7837583
## 741 2521.745 3404.325 1258.986499 OG Counties 7837583
## 742 2521.745 3404.325 2667.654970 OG Counties 7837583
## 743 2521.745 3404.325 1624.679613 OG Counties 7837583
## 744 2521.745 3404.325 1916.022846 OG Counties 7837583
## 745 2521.745 3404.325 12513.349450 OG Counties 7837583
## 746 2521.745 3404.325 1632.748962 OG Counties 7837583
## 747 2521.745 3404.325 674.359017 OG Counties 7837583
## 748 2521.745 3404.325 1984.345432 OG Counties 7837583
## 749 2521.745 3404.325 1308.449737 OG Counties 7837583
## 750 2521.745 3404.325 452.264381 OG Counties 7837583
## 751 2521.745 3404.325 1086.210609 OG Counties 7837583
## 752 2521.745 3404.325 1609.185610 OG Counties 7837583
## 753 2521.745 3404.325 2688.956203 OG Counties 7837583
## 754 2521.745 3404.325 1045.339285 OG Counties 7837583
## 755 2521.745 3404.325 1367.736481 OG Counties 7837583
## 756 2521.745 3404.325 2385.024615 OG Counties 7837583
## 757 2521.745 3404.325 1750.898918 OG Counties 7837583
## 758 2521.745 3404.325 1684.780120 OG Counties 7837583
## 759 2521.745 3404.325 1264.166563 OG Counties 7837583
## 760 2521.745 3404.325 906.891934 OG Counties 7837583
## 761 2521.745 3404.325 1513.941065 OG Counties 7837583
## 762 2521.745 3404.325 1132.050065 OG Counties 7837583
## 763 2521.745 3404.325 1272.395839 OG Counties 7837583
## 764 2521.745 3404.325 1265.704371 OG Counties 7837583
## 765 2521.745 3404.325 1980.196090 OG Counties 7837583
## 766 2521.745 3404.325 1466.125686 OG Counties 7837583
## 767 2521.745 3404.325 2311.709813 OG Counties 7837583
## 768 2521.745 3404.325 7481.501155 OG Counties 7837583
## 769 2521.745 3404.325 2752.642589 OG Counties 7837583
## 770 2521.745 3404.325 725.941087 OG Counties 7837583
## 771 2521.745 3404.325 1428.952475 OG Counties 7837583
## 772 2521.745 3404.325 795.367125 OG Counties 7837583
## 773 2521.745 3404.325 3431.783181 OG Counties 7837583
## 774 2521.745 3404.325 2699.606730 OG Counties 7837583
## 775 2521.745 3404.325 526.592446 OG Counties 7837583
## 776 2521.745 3404.325 1215.146239 OG Counties 7837583
## 777 2521.745 3404.325 1321.383087 OG Counties 7837583
## 778 2521.745 3404.325 558.824663 OG Counties 7837583
## 779 2521.745 3404.325 914.466405 OG Counties 7837583
## 780 2521.745 3404.325 1462.578017 OG Counties 7837583
## 781 2521.745 3404.325 757.498196 OG Counties 7837583
## 782 2521.745 3404.325 557.104031 OG Counties 7837583
## 783 2521.745 3404.325 1053.914479 OG Counties 7837583
## 784 2521.745 3404.325 1745.306063 OG Counties 7837583
## 785 2521.745 3404.325 1528.043365 OG Counties 7837583
## 786 2521.745 3404.325 1105.220065 OG Counties 7837583
## 787 2521.745 3404.325 1301.082708 OG Counties 7837583
## 788 2521.745 3404.325 1429.723273 OG Counties 7837583
## 789 2521.745 3404.325 4303.061633 OG Counties 7837583
## 790 2521.745 3404.325 3268.223097 OG Counties 7837583
## 791 2521.745 3404.325 2229.740790 OG Counties 7837583
## 792 2521.745 3404.325 1405.064444 OG Counties 7837583
## 793 2521.745 3404.325 1207.983108 OG Counties 7837583
## 794 2521.745 3404.325 17.133307 OG Counties 7837583
## 795 2521.745 3404.325 1272.318000 OG Counties 7837583
## 796 2521.745 3404.325 2319.430018 OG Counties 7837583
## 797 2521.745 3404.325 1918.382540 OG Counties 7837583
## 798 2521.745 3404.325 1562.362013 OG Counties 7837583
## 799 2521.745 3404.325 1750.560366 OG Counties 7837583
## 800 2521.745 3404.325 1005.552030 OG Counties 7837583
## 801 2521.745 3404.325 730.366217 OG Counties 7837583
## 802 2521.745 3404.325 1090.965298 OG Counties 7837583
## 803 2521.745 3404.325 904.068835 OG Counties 7837583
## 804 2521.745 3404.325 2742.313557 OG Counties 7837583
## 805 2521.745 3404.325 581.735688 OG Counties 7837583
## 806 2521.745 3404.325 5840.374872 OG Counties 7837583
## 807 2521.745 3404.325 3401.323616 OG Counties 7837583
## 808 2521.745 3404.325 2203.165799 OG Counties 7837583
## 809 2521.745 3404.325 1349.870327 OG Counties 7837583
## 810 2521.745 3404.325 1277.980765 OG Counties 7837583
## 811 2521.745 3404.325 5.323752 OG Counties 7837583
## 812 2521.745 3404.325 2709.705485 OG Counties 7837583
## 813 2521.745 3404.325 5312.025372 OG Counties 7837583
## 814 2521.745 3404.325 968.121898 OG Counties 7837583
## 815 2521.745 3404.325 1402.443965 OG Counties 7837583
## 816 2521.745 3404.325 1785.250696 OG Counties 7837583
## 817 2521.745 3404.325 702.650071 OG Counties 7837583
## 818 2521.745 3404.325 2169.523446 OG Counties 7837583
## 819 2521.745 3404.325 652.754846 OG Counties 7837583
## 820 2521.745 3404.325 6623.600432 OG Counties 7837583
## 821 2521.745 3404.325 1058.283945 OG Counties 7837583
## 822 2521.745 3404.325 3523.915019 OG Counties 7837583
## 823 2521.745 3404.325 1860.236844 OG Counties 7837583
## 824 2521.745 3404.325 1338.108395 OG Counties 7837583
## 825 2521.745 3404.325 2943.681602 OG Counties 7837583
## 826 2521.745 3404.325 1053.526112 OG Counties 7837583
## 827 2521.745 3404.325 1069.913295 OG Counties 7837583
## 828 2521.745 3404.325 7557.278324 OG Counties 7837583
## 829 2521.745 3404.325 9882.275731 OG Counties 7837583
## 830 2521.745 3404.325 1471.169578 OG Counties 7837583
## 831 2521.745 3404.325 3267.047072 OG Counties 7837583
## 832 2521.745 3404.325 2629.971743 OG Counties 7837583
## 833 2521.745 3404.325 1795.786720 OG Counties 7837583
## 834 2521.745 3404.325 1241.458414 OG Counties 7837583
## 835 2521.745 3404.325 610.236788 OG Counties 7837583
## 836 2521.745 3404.325 1299.638076 OG Counties 7837583
## 837 2521.745 3404.325 3726.097556 OG Counties 7837583
## 838 2521.745 3404.325 744.352638 OG Counties 7837583
## 839 2521.745 3404.325 1521.414160 OG Counties 7837583
## 840 2521.745 3404.325 2858.496036 OG Counties 7837583
## 841 2521.745 3404.325 714.327113 OG Counties 7837583
## 842 2521.745 3404.325 1073.994080 OG Counties 7837583
## 843 2521.745 3404.325 1518.277104 OG Counties 7837583
## 844 2521.745 3404.325 11677.790012 OG Counties 7837583
## 845 2521.745 3404.325 2039.372661 OG Counties 7837583
## 846 2521.745 3404.325 2637.500871 OG Counties 7837583
## 847 2521.745 3404.325 847.396424 OG Counties 7837583
## 848 2521.745 3404.325 1608.000613 OG Counties 7837583
## 849 2521.745 3404.325 968.590081 OG Counties 7837583
## 850 2521.745 3404.325 224.179562 OG Counties 7837583
## 851 2521.745 3404.325 2372.023822 OG Counties 7837583
## 852 2521.745 3404.325 1653.301964 OG Counties 7837583
## 853 2521.745 3404.325 2223.395658 OG Counties 7837583
## 854 2521.745 3404.325 2333.545030 OG Counties 7837583
## 855 2521.745 3404.325 4152.271169 OG Counties 7837583
## 856 2521.745 3404.325 21.012033 OG Counties 7837583
## 857 2521.745 3404.325 1499.292202 OG Counties 7837583
## 858 2521.745 3404.325 888.356482 OG Counties 7837583
## 859 2521.745 3404.325 645.254463 OG Counties 7837583
## 860 2521.745 3404.325 600.088140 OG Counties 7837583
## 861 2521.745 3404.325 1199.179506 OG Counties 7837583
## 862 2521.745 3404.325 1669.215157 OG Counties 7837583
## 863 2521.745 3404.325 319.403956 OG Counties 7837583
## 864 2521.745 3404.325 1171.564413 OG Counties 7837583
## 865 2521.745 3404.325 8110.323562 OG Counties 7837583
## 866 2521.745 3404.325 1215.299659 OG Counties 7837583
## 867 2521.745 3404.325 730.393830 OG Counties 7837583
## 868 2521.745 3404.325 1113.299794 OG Counties 7837583
## 869 2521.745 3404.325 3468.509099 OG Counties 7837583
## 870 2521.745 3404.325 13009.597569 OG Counties 7837583
## 871 2521.745 3404.325 1308.557384 OG Counties 7837583
## 872 2521.745 3404.325 1377.864632 OG Counties 7837583
## 873 2521.745 3404.325 1394.205224 OG Counties 7837583
## 874 2521.745 3404.325 1861.147000 OG Counties 7837583
## 875 2521.745 3404.325 3187.212030 OG Counties 7837583
## 876 2521.745 3404.325 1047.835624 OG Counties 7837583
## 877 2521.745 3404.325 1811.314750 OG Counties 7837583
## 878 2521.745 3404.325 2101.220319 OG Counties 7837583
## 879 2521.745 3404.325 952.290656 OG Counties 7837583
## 880 2521.745 3404.325 695.927690 OG Counties 7837583
## 881 2521.745 3404.325 1358.147719 OG Counties 7837583
## 882 2521.745 3404.325 1876.692728 OG Counties 7837583
## 883 2521.745 3404.325 1003.524967 OG Counties 7837583
## 884 2521.745 3404.325 2643.424193 OG Counties 7837583
## 885 2521.745 3404.325 2321.547707 OG Counties 7837583
## 886 2521.745 3404.325 872.098741 OG Counties 7837583
## 887 2521.745 3404.325 2094.656706 OG Counties 7837583
## 888 2521.745 3404.325 1499.044536 OG Counties 7837583
## 889 2521.745 3404.325 1337.349423 OG Counties 7837583
## 890 2521.745 3404.325 1487.300687 OG Counties 7837583
## 891 2521.745 3404.325 864.321614 OG Counties 7837583
## 892 2521.745 3404.325 10980.370838 OG Counties 7837583
## 893 2521.745 3404.325 3089.294505 OG Counties 7837583
## 894 2521.745 3404.325 1236.862724 OG Counties 7837583
## 895 2521.745 3404.325 6.990187 OG Counties 7837583
## 896 2521.745 3404.325 1124.785541 OG Counties 7837583
## 897 2521.745 3404.325 12801.272482 OG Counties 7837583
## 898 2521.745 3404.325 1022.987532 OG Counties 7837583
## 899 2521.745 3404.325 1434.959438 OG Counties 7837583
## 900 2521.745 3404.325 2642.539411 OG Counties 7837583
## 901 2521.745 3404.325 1404.060872 OG Counties 7837583
## 902 2521.745 3404.325 1053.103089 OG Counties 7837583
## 903 2521.745 3404.325 1277.069275 OG Counties 7837583
## 904 2521.745 3404.325 1480.997946 OG Counties 7837583
## 905 2521.745 3404.325 5022.472147 OG Counties 7837583
## 906 2521.745 3404.325 1297.239659 OG Counties 7837583
## 907 2521.745 3404.325 651.590541 OG Counties 7837583
## 908 2521.745 3404.325 448.748889 OG Counties 7837583
## 909 2521.745 3404.325 404.268960 OG Counties 7837583
## 910 2521.745 3404.325 1247.658883 OG Counties 7837583
## 911 2521.745 3404.325 1363.819680 OG Counties 7837583
## 912 2521.745 3404.325 585.629420 OG Counties 7837583
## 913 2521.745 3404.325 1500.263474 OG Counties 7837583
## 914 2521.745 3404.325 1301.204648 OG Counties 7837583
## 915 2521.745 3404.325 3180.387818 OG Counties 7837583
## 916 2521.745 3404.325 1240.389490 OG Counties 7837583
## 917 2521.745 3404.325 902.989888 OG Counties 7837583
## 918 2521.745 3404.325 2722.528991 OG Counties 7837583
## 919 2521.745 3404.325 11850.693329 OG Counties 7837583
## 920 2521.745 3404.325 11548.632186 OG Counties 7837583
## 921 2521.745 3404.325 1700.221701 OG Counties 7837583
## 922 2521.745 3404.325 803.963705 OG Counties 7837583
## 923 2521.745 3404.325 439.941622 OG Counties 7837583
## 924 2521.745 3404.325 2572.242953 OG Counties 7837583
## 925 2521.745 3404.325 1040.411278 OG Counties 7837583
## 926 2521.745 3404.325 1770.714097 OG Counties 7837583
## 927 2521.745 3404.325 2002.534544 OG Counties 7837583
## 928 2521.745 3404.325 1865.847215 OG Counties 7837583
## 929 2521.745 3404.325 370.149550 OG Counties 7837583
## 930 2521.745 3404.325 1387.147600 OG Counties 7837583
## 931 2521.745 3404.325 1784.205409 OG Counties 7837583
## 932 2521.745 3404.325 3304.823672 OG Counties 7837583
## 933 2521.745 3404.325 2426.926031 OG Counties 7837583
## 934 2521.745 3404.325 2582.685575 OG Counties 7837583
## 935 2521.745 3404.325 1496.837211 OG Counties 7837583
## 936 2521.745 3404.325 1057.912429 OG Counties 7837583
## 937 2521.745 3404.325 1901.843173 OG Counties 7837583
## 938 2521.745 3404.325 2598.381448 OG Counties 7837583
## 939 2521.745 3404.325 1127.348700 OG Counties 7837583
## 940 2521.745 3404.325 1049.322081 OG Counties 7837583
## 941 2521.745 3404.325 2291.517503 OG Counties 7837583
## 942 2521.745 3404.325 2923.675018 OG Counties 7837583
## 943 2521.745 3404.325 5445.313679 OG Counties 7837583
## 944 2521.745 3404.325 1109.119438 OG Counties 7837583
## 945 2521.745 3404.325 1878.377891 OG Counties 7837583
## 946 2521.745 3404.325 1251.953916 OG Counties 7837583
## 947 2521.745 3404.325 6543.036848 OG Counties 7837583
## 948 2521.745 3404.325 1966.804923 OG Counties 7837583
## 949 2521.745 3404.325 973.610331 OG Counties 7837583
## 950 2521.745 3404.325 651.965450 OG Counties 7837583
## 951 2521.745 3404.325 4686.605093 OG Counties 7837583
## 952 2521.745 3404.325 644.720617 OG Counties 7837583
## 953 2521.745 3404.325 1851.573895 OG Counties 7837583
## 954 2521.745 3404.325 2333.608603 OG Counties 7837583
## 955 2521.745 3404.325 2888.975633 OG Counties 7837583
## 956 2521.745 3404.325 1851.277051 OG Counties 7837583
## 957 2521.745 3404.325 1919.133880 OG Counties 7837583
## 958 2521.745 3404.325 464.492179 OG Counties 7837583
## 959 2521.745 3404.325 2336.171087 OG Counties 7837583
## 960 2521.745 3404.325 1968.615272 OG Counties 7837583
## 961 2521.745 3404.325 796.006764 OG Counties 7837583
## 962 2521.745 3404.325 1536.431357 OG Counties 7837583
## 963 2521.745 3404.325 976.118865 OG Counties 7837583
## 964 2521.745 3404.325 2779.921352 OG Counties 7837583
## 965 2521.745 3404.325 3365.304256 OG Counties 7837583
## 966 2521.745 3404.325 1495.644149 OG Counties 7837583
## 967 2521.745 3404.325 2738.083860 OG Counties 7837583
## 968 2521.745 3404.325 906.584537 OG Counties 7837583
## 969 2521.745 3404.325 1047.109310 OG Counties 7837583
## 970 2521.745 3404.325 1301.842833 OG Counties 7837583
## 971 2521.745 3404.325 2267.936680 OG Counties 7837583
## 972 2521.745 3404.325 696.953679 OG Counties 7837583
## 973 2521.745 3404.325 1477.803222 OG Counties 7837583
## 974 2521.745 3404.325 1183.196228 OG Counties 7837583
## 975 2521.745 3404.325 834.404455 OG Counties 7837583
## 976 2521.745 3404.325 737.245200 OG Counties 7837583
## 977 2521.745 3404.325 1498.957235 OG Counties 7837583
## 978 2521.745 3404.325 1072.065672 OG Counties 7837583
## 979 2521.745 3404.325 1928.907484 OG Counties 7837583
## 980 2521.745 3404.325 1483.241122 OG Counties 7837583
## 981 2521.745 3404.325 1877.808919 OG Counties 7837583
## 982 2521.745 3404.325 3405.240464 OG Counties 7837583
## 983 2521.745 3404.325 1393.008774 OG Counties 7837583
## 984 2521.745 3404.325 3933.315879 OG Counties 7837583
## 985 2521.745 3404.325 632.899587 OG Counties 7837583
## 986 2521.745 3404.325 1306.334189 OG Counties 7837583
## 987 2521.745 3404.325 1986.377070 OG Counties 7837583
## 988 2521.745 3404.325 514.644448 OG Counties 7837583
## 989 2521.745 3404.325 980.907009 OG Counties 7837583
## 990 2521.745 3404.325 1481.849184 OG Counties 7837583
## 991 2521.745 3404.325 1850.981021 OG Counties 7837583
## 992 2521.745 3404.325 1814.121623 OG Counties 7837583
## 993 2521.745 3404.325 1313.595713 OG Counties 7837583
## 994 2521.745 3404.325 789.522478 OG Counties 7837583
## 995 2521.745 3404.325 2608.591589 OG Counties 7837583
## 996 2521.745 3404.325 739.507205 OG Counties 7837583
## 997 2521.745 3404.325 2563.969527 OG Counties 7837583
## 998 2521.745 3404.325 1628.722356 OG Counties 7837583
## 999 2521.745 3404.325 1239.281249 OG Counties 7837583
## 1000 2521.745 3404.325 5740.285189 OG Counties 7837583
## 1001 2521.745 3404.325 1510.125886 OG Counties 7837583
## 1002 2521.745 3404.325 2685.301604 OG Counties 7837583
## 1003 2521.745 3404.325 2320.518279 OG Counties 7837583
## 1004 2521.745 3404.325 1926.477562 OG Counties 7837583
## 1005 2521.745 3404.325 1505.017788 OG Counties 7837583
## 1006 2521.745 3404.325 1162.543769 OG Counties 7837583
## 1007 2521.745 3404.325 4255.879159 OG Counties 7837583
## 1008 2521.745 3404.325 2020.426307 OG Counties 7837583
## 1009 2521.745 3404.325 1397.289850 OG Counties 7837583
## 1010 2521.745 3404.325 864.334244 OG Counties 7837583
## 1011 2521.745 3404.325 2296.971459 OG Counties 7837583
## 1012 2521.745 3404.325 2414.712701 OG Counties 7837583
## 1013 2521.745 3404.325 4904.733019 OG Counties 7837583
## 1014 2521.745 3404.325 1155.902535 OG Counties 7837583
## 1015 2521.745 3404.325 2852.594194 OG Counties 7837583
## 1016 2521.745 3404.325 2474.746171 OG Counties 7837583
## 1017 2521.745 3404.325 21625.015837 OG Counties 7837583
## 1018 2521.745 3404.325 2933.106201 OG Counties 7837583
## 1019 2521.745 3404.325 1318.798620 OG Counties 7837583
## 1020 2521.745 3404.325 945.481996 OG Counties 7837583
## 1021 2521.745 3404.325 1403.335920 OG Counties 7837583
## 1022 2521.745 3404.325 952.365217 OG Counties 7837583
## 1023 2521.745 3404.325 1148.965195 OG Counties 7837583
## 1024 2521.745 3404.325 4034.530064 OG Counties 7837583
## 1025 2521.745 3404.325 2392.515008 OG Counties 7837583
## 1026 2521.745 3404.325 1546.821044 OG Counties 7837583
## 1027 2521.745 3404.325 1370.078296 OG Counties 7837583
## 1028 2521.745 3404.325 1279.434911 OG Counties 7837583
## 1029 2521.745 3404.325 1542.979818 OG Counties 7837583
## 1030 2521.745 3404.325 964.949748 OG Counties 7837583
## 1031 2521.745 3404.325 6075.911580 OG Counties 7837583
## 1032 2521.745 3404.325 2982.904751 OG Counties 7837583
## 1033 2521.745 3404.325 852.519745 OG Counties 7837583
## 1034 2521.745 3404.325 2863.251252 OG Counties 7837583
## 1035 2521.745 3404.325 1608.007528 OG Counties 7837583
## 1036 2521.745 3404.325 658.721188 OG Counties 7837583
## 1037 2521.745 3404.325 2090.697878 OG Counties 7837583
## 1038 2521.745 3404.325 1499.731851 OG Counties 7837583
## 1039 2521.745 3404.325 300.894450 OG Counties 7837583
## 1040 2521.745 3404.325 1522.750390 OG Counties 7837583
## 1041 2521.745 3404.325 1309.872312 OG Counties 7837583
## 1042 2521.745 3404.325 2818.150800 OG Counties 7837583
## 1043 2521.745 3404.325 10893.437569 OG Counties 7837583
## 1044 2521.745 3404.325 900.026873 OG Counties 7837583
## 1045 2521.745 3404.325 2906.314706 OG Counties 7837583
## 1046 2521.745 3404.325 2310.203050 OG Counties 7837583
## 1047 2521.745 3404.325 4925.945280 OG Counties 7837583
## 1048 2521.745 3404.325 2511.832993 OG Counties 7837583
## 1049 2521.745 3404.325 1895.296280 OG Counties 7837583
## 1050 2521.745 3404.325 1760.192090 OG Counties 7837583
## 1051 2521.745 3404.325 12213.871945 OG Counties 7837583
## 1052 2521.745 3404.325 6160.267776 OG Counties 7837583
## 1053 2521.745 3404.325 2423.931682 OG Counties 7837583
## 1054 2521.745 3404.325 2421.325118 OG Counties 7837583
## 1055 2521.745 3404.325 1188.702949 OG Counties 7837583
## 1056 2521.745 3404.325 1215.684887 OG Counties 7837583
## 1057 2521.745 3404.325 4685.459916 OG Counties 7837583
## 1058 2521.745 3404.325 1859.711886 OG Counties 7837583
## 1059 2521.745 3404.325 2599.852584 OG Counties 7837583
## 1060 2521.745 3404.325 1133.102255 OG Counties 7837583
## 1061 2521.745 3404.325 1108.875291 OG Counties 7837583
## 1062 2521.745 3404.325 3546.573728 OG Counties 7837583
## 1063 2521.745 3404.325 1545.643718 OG Counties 7837583
## 1064 2521.745 3404.325 1448.016764 OG Counties 7837583
## 1065 2521.745 3404.325 1991.861597 OG Counties 7837583
## 1066 2521.745 3404.325 1443.369308 OG Counties 7837583
## 1067 2521.745 3404.325 1427.753855 OG Counties 7837583
## 1068 2521.745 3404.325 1292.599310 OG Counties 7837583
## 1069 2521.745 3404.325 2823.999546 OG Counties 7837583
## 1070 2521.745 3404.325 1037.338560 OG Counties 7837583
## 1071 2521.745 3404.325 482.306021 OG Counties 7837583
## 1072 2521.745 3404.325 1222.256596 OG Counties 7837583
## 1073 2521.745 3404.325 1383.741120 OG Counties 7837583
## 1074 2521.745 3404.325 1038.808017 OG Counties 7837583
## 1075 2521.745 3404.325 3344.978322 OG Counties 7837583
## 1076 2521.745 3404.325 2960.651854 OG Counties 7837583
## 1077 2521.745 3404.325 2334.518629 OG Counties 7837583
## 1078 2521.745 3404.325 4215.133299 OG Counties 7837583
## 1079 2521.745 3404.325 1417.079808 OG Counties 7837583
## 1080 2521.745 3404.325 2606.544458 OG Counties 7837583
## 1081 2521.745 3404.325 4688.293735 OG Counties 7837583
## 1082 2521.745 3404.325 967.179369 OG Counties 7837583
## 1083 2521.745 3404.325 446.125428 OG Counties 7837583
## 1084 2521.745 3404.325 902.907036 OG Counties 7837583
## 1085 2521.745 3404.325 2518.764420 OG Counties 7837583
## 1086 2521.745 3404.325 2266.597500 OG Counties 7837583
## 1087 2521.745 3404.325 1243.505987 OG Counties 7837583
## 1088 2521.745 3404.325 1093.572502 OG Counties 7837583
## 1089 2521.745 3404.325 1167.438971 OG Counties 7837583
## 1090 2521.745 3404.325 768.796493 OG Counties 7837583
## 1091 2521.745 3404.325 6361.866848 OG Counties 7837583
## 1092 2521.745 3404.325 1100.546327 OG Counties 7837583
## 1093 2521.745 3404.325 1718.325115 OG Counties 7837583
## 1094 2521.745 3404.325 2663.084117 OG Counties 7837583
## 1095 2521.745 3404.325 1829.925160 OG Counties 7837583
## 1096 2521.745 3404.325 2110.038723 OG Counties 7837583
## 1097 2521.745 3404.325 2404.590783 OG Counties 7837583
## 1098 2521.745 3404.325 1527.694270 OG Counties 7837583
## 1099 2521.745 3404.325 2063.212349 OG Counties 7837583
## 1100 2521.745 3404.325 3020.592876 OG Counties 7837583
## 1101 2521.745 3404.325 1763.608049 OG Counties 7837583
## 1102 2521.745 3404.325 1183.191669 OG Counties 7837583
## 1103 2521.745 3404.325 887.230626 OG Counties 7837583
## 1104 2521.745 3404.325 20.255137 OG Counties 7837583
## 1105 2521.745 3404.325 684.339809 OG Counties 7837583
## 1106 2521.745 3404.325 1922.334594 OG Counties 7837583
## 1107 2521.745 3404.325 24.791682 OG Counties 7837583
## 1108 2521.745 3404.325 2128.750067 OG Counties 7837583
## 1109 2521.745 3404.325 1854.226182 OG Counties 7837583
## 1110 2521.745 3404.325 2053.365109 OG Counties 7837583
## 1111 2521.745 3404.325 1409.095811 OG Counties 7837583
## 1112 2521.745 3404.325 892.770840 OG Counties 7837583
## 1113 2521.745 3404.325 5669.550230 OG Counties 7837583
## 1114 2521.745 3404.325 47100.551684 OG Counties 7837583
## 1115 2521.745 3404.325 1505.288440 OG Counties 7837583
## 1116 2521.745 3404.325 1988.294178 OG Counties 7837583
## 1117 2521.745 3404.325 1546.268200 OG Counties 7837583
## 1118 2521.745 3404.325 1970.690298 OG Counties 7837583
## 1119 2521.745 3404.325 2355.462200 OG Counties 7837583
## 1120 2521.745 3404.325 1138.166857 OG Counties 7837583
## 1121 2521.745 3404.325 1669.116021 OG Counties 7837583
## 1122 2521.745 3404.325 6508.635562 OG Counties 7837583
## 1123 2521.745 3404.325 3053.261563 OG Counties 7837583
## 1124 2521.745 3404.325 1592.992712 OG Counties 7837583
## 1125 2521.745 3404.325 9870.386630 OG Counties 7837583
## 1126 2521.745 3404.325 1014.105735 OG Counties 7837583
## 1127 2521.745 3404.325 2149.582429 OG Counties 7837583
## 1128 2521.745 3404.325 1245.539528 OG Counties 7837583
## 1129 2521.745 3404.325 2431.605775 OG Counties 7837583
## 1130 2521.745 3404.325 1501.023132 OG Counties 7837583
## 1131 2521.745 3404.325 831.283555 OG Counties 7837583
## 1132 2521.745 3404.325 1858.226366 OG Counties 7837583
## 1133 2521.745 3404.325 346.790046 OG Counties 7837583
## 1134 2521.745 3404.325 1662.993651 OG Counties 7837583
## 1135 2521.745 3404.325 6055.311806 OG Counties 7837583
## 1136 2521.745 3404.325 1022.024307 OG Counties 7837583
## 1137 2521.745 3404.325 695.575192 OG Counties 7837583
## 1138 2521.745 3404.325 962.857248 OG Counties 7837583
## 1139 2521.745 3404.325 1996.155879 OG Counties 7837583
## 1140 2521.745 3404.325 2347.668765 OG Counties 7837583
## 1141 2521.745 3404.325 1934.831631 OG Counties 7837583
## 1142 2521.745 3404.325 4479.661426 OG Counties 7837583
## 1143 2521.745 3404.325 1526.746352 OG Counties 7837583
## 1144 2521.745 3404.325 1509.494545 OG Counties 7837583
## 1145 2521.745 3404.325 1321.531522 OG Counties 7837583
## 1146 2521.745 3404.325 2382.847752 OG Counties 7837583
## 1147 2521.745 3404.325 7286.458050 OG Counties 7837583
## 1148 2521.745 3404.325 2228.402084 OG Counties 7837583
## 1149 2521.745 3404.325 1165.136117 OG Counties 7837583
## 1150 2521.745 3404.325 2569.626446 OG Counties 7837583
## 1151 2521.745 3404.325 599.473875 OG Counties 7837583
## 1152 2521.745 3404.325 2217.973714 OG Counties 7837583
## 1153 2521.745 3404.325 3108.200859 OG Counties 7837583
## 1154 2521.745 3404.325 1191.578970 OG Counties 7837583
## 1155 2521.745 3404.325 1494.439315 OG Counties 7837583
## 1156 2521.745 3404.325 1637.496196 OG Counties 7837583
## 1157 2521.745 3404.325 4425.894506 OG Counties 7837583
## 1158 2521.745 3404.325 1646.645359 OG Counties 7837583
## 1159 2521.745 3404.325 1535.712825 OG Counties 7837583
## 1160 2521.745 3404.325 707.194422 OG Counties 7837583
## 1161 2521.745 3404.325 2576.790639 OG Counties 7837583
## 1162 2521.745 3404.325 1644.343253 OG Counties 7837583
## 1163 2521.745 3404.325 1370.908987 OG Counties 7837583
## 1164 2521.745 3404.325 8161.075799 OG Counties 7837583
## 1165 2521.745 3404.325 324.225923 OG Counties 7837583
## 1166 2521.745 3404.325 1846.015963 OG Counties 7837583
## 1167 2521.745 3404.325 1776.763909 OG Counties 7837583
## 1168 2521.745 3404.325 2079.262894 OG Counties 7837583
## 1169 2521.745 3404.325 2932.558043 OG Counties 7837583
## 1170 2521.745 3404.325 2108.052216 OG Counties 7837583
## 1171 2521.745 3404.325 1572.973746 OG Counties 7837583
## 1172 2521.745 3404.325 1015.658634 OG Counties 7837583
## 1173 2521.745 3404.325 2090.341652 OG Counties 7837583
## 1174 2521.745 3404.325 2337.850720 OG Counties 7837583
## 1175 2521.745 3404.325 3718.239214 OG Counties 7837583
## 1176 2521.745 3404.325 2970.778065 OG Counties 7837583
## 1177 2521.745 3404.325 1819.131519 OG Counties 7837583
## 1178 2521.745 3404.325 1064.735159 OG Counties 7837583
## 1179 2521.745 3404.325 6836.642923 OG Counties 7837583
## 1180 2521.745 3404.325 1420.252881 OG Counties 7837583
## 1181 2521.745 3404.325 2694.775593 OG Counties 7837583
## 1182 2521.745 3404.325 1973.368017 OG Counties 7837583
## 1183 2521.745 3404.325 7437.509933 OG Counties 7837583
## 1184 2521.745 3404.325 1182.664118 OG Counties 7837583
## 1185 2521.745 3404.325 5858.615270 OG Counties 7837583
## 1186 2521.745 3404.325 2244.305613 OG Counties 7837583
## 1187 2521.745 3404.325 1795.882738 OG Counties 7837583
## 1188 2521.745 3404.325 2615.261221 OG Counties 7837583
## 1189 2521.745 3404.325 1233.476531 OG Counties 7837583
## 1190 2521.745 3404.325 533.024577 OG Counties 7837583
## 1191 2521.745 3404.325 3052.825379 OG Counties 7837583
## 1192 2521.745 3404.325 3193.424928 OG Counties 7837583
## 1193 2521.745 3404.325 2829.038173 OG Counties 7837583
## 1194 2521.745 3404.325 1424.465257 OG Counties 7837583
## 1195 2521.745 3404.325 1748.975332 OG Counties 7837583
## 1196 2521.745 3404.325 2151.275842 OG Counties 7837583
## 1197 2521.745 3404.325 1108.501536 OG Counties 7837583
## 1198 2521.745 3404.325 2045.973230 OG Counties 7837583
## 1199 2521.745 3404.325 1128.620736 OG Counties 7837583
## 1200 2521.745 3404.325 5932.770305 OG Counties 7837583
## 1201 2521.745 3404.325 1126.409270 OG Counties 7837583
## 1202 2521.745 3404.325 932.157706 OG Counties 7837583
## 1203 2521.745 3404.325 1094.311361 OG Counties 7837583
## 1204 2521.745 3404.325 1666.977624 OG Counties 7837583
## 1205 2521.745 3404.325 1061.425579 OG Counties 7837583
## 1206 2521.745 3404.325 1073.569565 OG Counties 7837583
## 1207 2521.745 3404.325 2680.949116 OG Counties 7837583
## 1208 2521.745 3404.325 1087.704239 OG Counties 7837583
## 1209 2521.745 3404.325 2815.067884 OG Counties 7837583
## 1210 2521.745 3404.325 1845.107182 OG Counties 7837583
## 1211 2521.745 3404.325 2163.184644 OG Counties 7837583
## 1212 2521.745 3404.325 1471.548078 OG Counties 7837583
## 1213 2521.745 3404.325 12795.050514 OG Counties 7837583
## 1214 2521.745 3404.325 2776.119993 OG Counties 7837583
## 1215 2521.745 3404.325 1493.726603 OG Counties 7837583
## 1216 2521.745 3404.325 2442.992854 OG Counties 7837583
## 1217 2521.745 3404.325 118.514354 OG Counties 7837583
## 1218 2521.745 3404.325 2832.391475 OG Counties 7837583
## 1219 2521.745 3404.325 1020.676350 OG Counties 7837583
## 1220 2521.745 3404.325 2016.522529 OG Counties 7837583
## 1221 2521.745 3404.325 6220.587277 OG Counties 7837583
## 1222 2521.745 3404.325 2391.390553 OG Counties 7837583
## 1223 2521.745 3404.325 3198.354489 OG Counties 7837583
## 1224 2521.745 3404.325 167.587571 OG Counties 7837583
## 1225 2521.745 3404.325 1810.167731 OG Counties 7837583
## 1226 2521.745 3404.325 1633.092166 OG Counties 7837583
## 1227 2521.745 3404.325 1148.958044 OG Counties 7837583
## 1228 2521.745 3404.325 1302.132238 OG Counties 7837583
## 1229 2521.745 3404.325 2347.666003 OG Counties 7837583
## 1230 2521.745 3404.325 55.471842 OG Counties 7837583
## 1231 2521.745 3404.325 1279.977509 OG Counties 7837583
## 1232 2521.745 3404.325 1872.770463 OG Counties 7837583
## 1233 2521.745 3404.325 3032.259007 OG Counties 7837583
## 1234 2521.745 3404.325 2437.658101 OG Counties 7837583
## 1235 2521.745 3404.325 1286.060197 OG Counties 7837583
## 1236 2521.745 3404.325 1584.202049 OG Counties 7837583
## 1237 2521.745 3404.325 1546.032337 OG Counties 7837583
## 1238 2521.745 3404.325 2578.153068 OG Counties 7837583
## 1239 2521.745 3404.325 2351.537015 OG Counties 7837583
## 1240 2521.745 3404.325 949.743445 OG Counties 7837583
## 1241 2521.745 3404.325 1824.494245 OG Counties 7837583
## 1242 2521.745 3404.325 1859.334468 OG Counties 7837583
## 1243 2521.745 3404.325 1278.254858 OG Counties 7837583
## 1244 2521.745 3404.325 1673.646674 OG Counties 7837583
## 1245 2521.745 3404.325 1351.960714 OG Counties 7837583
## 1246 2521.745 3404.325 891.134213 OG Counties 7837583
## 1247 2521.745 3404.325 1639.897244 OG Counties 7837583
## 1248 2521.745 3404.325 1876.262827 OG Counties 7837583
## 1249 2521.745 3404.325 2173.070575 OG Counties 7837583
## 1250 2521.745 3404.325 1283.349835 OG Counties 7837583
## 1251 2521.745 3404.325 1460.821742 OG Counties 7837583
## 1252 2521.745 3404.325 1212.102633 OG Counties 7837583
## 1253 2521.745 3404.325 1657.291889 OG Counties 7837583
## 1254 2521.745 3404.325 3474.846596 OG Counties 7837583
## 1255 2521.745 3404.325 2095.526801 OG Counties 7837583
## 1256 2521.745 3404.325 5431.986027 OG Counties 7837583
## 1257 2521.745 3404.325 8388.092699 OG Counties 7837583
## 1258 2521.745 3404.325 8859.776583 OG Counties 7837583
## 1259 2521.745 3404.325 6229.033106 OG Counties 7837583
## 1260 2521.745 3404.325 688.364537 OG Counties 7837583
## 1261 2521.745 3404.325 504.726334 OG Counties 7837583
## 1262 2521.745 3404.325 1478.367712 OG Counties 7837583
## 1263 2521.745 3404.325 7218.664232 OG Counties 7837583
## 1264 2521.745 3404.325 1193.872486 OG Counties 7837583
## 1265 2521.745 3404.325 1785.840721 OG Counties 7837583
## 1266 2521.745 3404.325 1667.868540 OG Counties 7837583
## 1267 2521.745 3404.325 1488.249842 OG Counties 7837583
## 1268 2521.745 3404.325 865.926775 OG Counties 7837583
## 1269 2521.745 3404.325 1804.217836 OG Counties 7837583
## 1270 2521.745 3404.325 10671.157405 OG Counties 7837583
## 1271 2521.745 3404.325 1919.358422 OG Counties 7837583
## 1272 2521.745 3404.325 1792.283671 OG Counties 7837583
## 1273 2521.745 3404.325 7863.875300 OG Counties 7837583
## 1274 2521.745 3404.325 2055.123449 OG Counties 7837583
## 1275 2521.745 3404.325 2013.347898 OG Counties 7837583
## 1276 2521.745 3404.325 14341.815097 OG Counties 7837583
## 1277 2521.745 3404.325 4515.812881 OG Counties 7837583
## 1278 2521.745 3404.325 1838.780823 OG Counties 7837583
## 1279 2521.745 3404.325 1098.068290 OG Counties 7837583
## 1280 2521.745 3404.325 1148.056443 OG Counties 7837583
## 1281 2521.745 3404.325 1653.338740 OG Counties 7837583
## 1282 2521.745 3404.325 2564.904983 OG Counties 7837583
## 1283 2521.745 3404.325 788.173674 OG Counties 7837583
## 1284 2521.745 3404.325 6251.927520 OG Counties 7837583
## 1285 2521.745 3404.325 8171.989055 OG Counties 7837583
## 1286 2521.745 3404.325 1523.655201 OG Counties 7837583
## 1287 2521.745 3404.325 1678.822476 OG Counties 7837583
## 1288 2521.745 3404.325 2239.254537 OG Counties 7837583
## 1289 2521.745 3404.325 2989.757624 OG Counties 7837583
## 1290 2521.745 3404.325 5129.885500 OG Counties 7837583
## 1291 2521.745 3404.325 2056.132991 OG Counties 7837583
## 1292 2521.745 3404.325 1595.258930 OG Counties 7837583
## 1293 2521.745 3404.325 1324.514251 OG Counties 7837583
## 1294 2521.745 3404.325 1133.058638 OG Counties 7837583
## 1295 2521.745 3404.325 4253.443721 OG Counties 7837583
## 1296 2521.745 3404.325 7435.943524 OG Counties 7837583
## 1297 2521.745 3404.325 1092.153959 OG Counties 7837583
## 1298 2521.745 3404.325 1709.071783 OG Counties 7837583
## 1299 2521.745 3404.325 44563.812621 OG Counties 7837583
## 1300 2521.745 3404.325 1148.676848 OG Counties 7837583
## 1301 2521.745 3404.325 1165.145615 OG Counties 7837583
## 1302 2521.745 3404.325 2976.998133 OG Counties 7837583
## 1303 2521.745 3404.325 2962.834564 OG Counties 7837583
## 1304 2521.745 3404.325 2072.834640 OG Counties 7837583
## 1305 2521.745 3404.325 3536.341112 OG Counties 7837583
## 1306 2521.745 3404.325 1360.037574 OG Counties 7837583
## 1307 2521.745 3404.325 1024.500685 OG Counties 7837583
## 1308 2521.745 3404.325 1635.884667 OG Counties 7837583
## 1309 2521.745 3404.325 1280.871733 OG Counties 7837583
## 1310 2521.745 3404.325 1123.201097 OG Counties 7837583
## 1311 2521.745 3404.325 1151.816835 OG Counties 7837583
## 1312 2521.745 3404.325 1051.678093 OG Counties 7837583
## 1313 2521.745 3404.325 1453.138679 OG Counties 7837583
## 1314 2521.745 3404.325 1873.781075 OG Counties 7837583
## 1315 2521.745 3404.325 683.563756 OG Counties 7837583
## 1316 2521.745 3404.325 656.003098 OG Counties 7837583
## 1317 2521.745 3404.325 1395.255139 OG Counties 7837583
## 1318 2521.745 3404.325 1396.759252 OG Counties 7837583
## 1319 2521.745 3404.325 799.348687 OG Counties 7837583
## 1320 2521.745 3404.325 1353.280282 OG Counties 7837583
## 1321 2521.745 3404.325 1118.751128 OG Counties 7837583
## 1322 2521.745 3404.325 842.078682 OG Counties 7837583
## 1323 2521.745 3404.325 1058.977097 OG Counties 7837583
## 1324 2521.745 3404.325 1074.002162 OG Counties 7837583
## 1325 2521.745 3404.325 3363.023808 OG Counties 7837583
## 1326 2521.745 3404.325 13476.506980 OG Counties 7837583
## 1327 2521.745 3404.325 1098.123617 OG Counties 7837583
## 1328 2521.745 3404.325 1905.334013 OG Counties 7837583
## 1329 2521.745 3404.325 1276.105328 OG Counties 7837583
## 1330 2521.745 3404.325 1419.242725 OG Counties 7837583
## 1331 2521.745 3404.325 475.198815 OG Counties 7837583
## 1332 2521.745 3404.325 4139.996297 OG Counties 7837583
## 1333 2521.745 3404.325 1552.012872 OG Counties 7837583
## 1334 2521.745 3404.325 1113.300987 OG Counties 7837583
## 1335 2521.745 3404.325 3787.059354 OG Counties 7837583
## 1336 2521.745 3404.325 4607.907131 OG Counties 7837583
## 1337 2521.745 3404.325 5731.174657 OG Counties 7837583
## 1338 2521.745 3404.325 2319.764470 OG Counties 7837583
## 1339 2521.745 3404.325 7179.199411 OG Counties 7837583
## 1340 2521.745 3404.325 1722.351351 OG Counties 7837583
## 1341 2521.745 3404.325 3458.318273 OG Counties 7837583
## 1342 2521.745 3404.325 1483.717986 OG Counties 7837583
## 1343 2521.745 3404.325 507.772710 OG Counties 7837583
## 1344 2521.745 3404.325 1466.430305 OG Counties 7837583
## 1345 2521.745 3404.325 2338.633461 OG Counties 7837583
## 1346 2521.745 3404.325 4950.299789 OG Counties 7837583
## 1347 2521.745 3404.325 18905.823536 OG Counties 7837583
## 1348 2521.745 3404.325 574.381755 OG Counties 7837583
## 1349 2521.745 3404.325 2149.907559 OG Counties 7837583
## 1350 2521.745 3404.325 3060.323458 OG Counties 7837583
## 1351 2521.745 3404.325 3324.886434 OG Counties 7837583
## 1352 2521.745 3404.325 904.849630 OG Counties 7837583
## 1353 2521.745 3404.325 778.053342 OG Counties 7837583
## 1354 2521.745 3404.325 1897.720077 OG Counties 7837583
## 1355 2521.745 3404.325 2313.257759 OG Counties 7837583
## 1356 2521.745 3404.325 442.153522 OG Counties 7837583
## 1357 2521.745 3404.325 5781.894111 OG Counties 7837583
## 1358 2521.745 3404.325 1919.602749 OG Counties 7837583
## 1359 2521.745 3404.325 1543.552445 OG Counties 7837583
## 1360 2521.745 3404.325 10584.542295 OG Counties 7837583
## 1361 2521.745 3404.325 2029.793756 OG Counties 7837583
## 1362 2521.745 3404.325 1676.451039 OG Counties 7837583
## 1363 2521.745 3404.325 1570.574014 OG Counties 7837583
## 1364 2521.745 3404.325 1933.700537 OG Counties 7837583
## 1365 2521.745 3404.325 2863.222273 OG Counties 7837583
## 1366 2521.745 3404.325 1662.180364 OG Counties 7837583
## 1367 2521.745 3404.325 1416.683889 OG Counties 7837583
## 1368 2521.745 3404.325 2315.827881 OG Counties 7837583
## 1369 2521.745 3404.325 1245.595726 OG Counties 7837583
## 1370 2521.745 3404.325 5046.999456 OG Counties 7837583
## 1371 2521.745 3404.325 1987.580623 OG Counties 7837583
## 1372 2521.745 3404.325 699.090963 OG Counties 7837583
## 1373 2521.745 3404.325 1546.285686 OG Counties 7837583
## 1374 2521.745 3404.325 1926.784869 OG Counties 7837583
## 1375 2521.745 3404.325 1748.767962 OG Counties 7837583
## 1376 2521.745 3404.325 1091.252580 OG Counties 7837583
## 1377 2521.745 3404.325 1538.971064 OG Counties 7837583
## 1378 2521.745 3404.325 994.887042 OG Counties 7837583
## 1379 2521.745 3404.325 4538.119415 OG Counties 7837583
## 1380 2521.745 3404.325 1831.784178 OG Counties 7837583
## 1381 2521.745 3404.325 1289.600607 OG Counties 7837583
## 1382 2521.745 3404.325 1123.223169 OG Counties 7837583
## 1383 2521.745 3404.325 536.246664 OG Counties 7837583
## 1384 2521.745 3404.325 4222.042236 OG Counties 7837583
## 1385 2521.745 3404.325 2129.409135 OG Counties 7837583
## 1386 2521.745 3404.325 1118.744681 OG Counties 7837583
## 1387 2521.745 3404.325 26512.017476 OG Counties 7837583
## 1388 2521.745 3404.325 1521.637773 OG Counties 7837583
## 1389 2521.745 3404.325 4052.353556 OG Counties 7837583
## 1390 2521.745 3404.325 1592.016569 OG Counties 7837583
## 1391 2521.745 3404.325 1771.391402 OG Counties 7837583
## 1392 2521.745 3404.325 660.195235 OG Counties 7837583
## 1393 2521.745 3404.325 2603.471094 OG Counties 7837583
## 1394 2521.745 3404.325 1599.039745 OG Counties 7837583
## 1395 2521.745 3404.325 1849.876485 OG Counties 7837583
## 1396 2521.745 3404.325 1849.246705 OG Counties 7837583
## 1397 2521.745 3404.325 2208.497144 OG Counties 7837583
## 1398 2521.745 3404.325 1044.999165 OG Counties 7837583
## 1399 2521.745 3404.325 318.721837 OG Counties 7837583
## 1400 2521.745 3404.325 1595.922371 OG Counties 7837583
## 1401 2521.745 3404.325 1447.293503 OG Counties 7837583
## 1402 2521.745 3404.325 1323.454302 OG Counties 7837583
## 1403 2521.745 3404.325 1801.283119 OG Counties 7837583
## 1404 2521.745 3404.325 4392.592175 OG Counties 7837583
## 1405 2521.745 3404.325 1132.004014 OG Counties 7837583
## 1406 2521.745 3404.325 1219.213845 OG Counties 7837583
## 1407 2521.745 3404.325 321.736066 OG Counties 7837583
## 1408 2521.745 3404.325 843.005425 OG Counties 7837583
## 1409 2521.745 3404.325 1503.207368 OG Counties 7837583
## 1410 2521.745 3404.325 936.340465 OG Counties 7837583
## 1411 2521.745 3404.325 1658.162681 OG Counties 7837583
## 1412 2521.745 3404.325 672.481176 OG Counties 7837583
## 1413 2521.745 3404.325 12483.320740 OG Counties 7837583
## 1414 2521.745 3404.325 1099.006031 OG Counties 7837583
## 1415 2521.745 3404.325 551.273245 OG Counties 7837583
## 1416 2521.745 3404.325 1817.047616 OG Counties 7837583
## 1417 2521.745 3404.325 2435.515780 OG Counties 7837583
## 1418 2521.745 3404.325 1571.637376 OG Counties 7837583
## 1419 2521.745 3404.325 674.418532 OG Counties 7837583
## 1420 2521.745 3404.325 6110.854313 OG Counties 7837583
## 1421 2521.745 3404.325 1581.764394 OG Counties 7837583
## 1422 2521.745 3404.325 1770.006676 OG Counties 7837583
## 1423 2521.745 3404.325 1148.137597 OG Counties 7837583
## 1424 2521.745 3404.325 1264.786691 OG Counties 7837583
## 1425 2521.745 3404.325 1458.277683 OG Counties 7837583
## 1426 2521.745 3404.325 2489.783949 OG Counties 7837583
## 1427 2521.745 3404.325 931.226356 OG Counties 7837583
## 1428 2521.745 3404.325 3308.971843 OG Counties 7837583
## 1429 2521.745 3404.325 829.833544 OG Counties 7837583
## 1430 2521.745 3404.325 1915.599312 OG Counties 7837583
## 1431 2521.745 3404.325 3073.131960 OG Counties 7837583
## 1432 2521.745 3404.325 953.902035 OG Counties 7837583
## 1433 2521.745 3404.325 3343.653179 OG Counties 7837583
## 1434 2521.745 3404.325 838.622663 OG Counties 7837583
## 1435 2521.745 3404.325 1859.483672 OG Counties 7837583
## 1436 2521.745 3404.325 585.067432 OG Counties 7837583
## 1437 2521.745 3404.325 1550.533590 OG Counties 7837583
## 1438 2521.745 3404.325 861.451232 OG Counties 7837583
## 1439 2521.745 3404.325 1865.299543 OG Counties 7837583
## 1440 2521.745 3404.325 3618.463756 OG Counties 7837583
## 1441 2521.745 3404.325 9366.619272 OG Counties 7837583
## 1442 2521.745 3404.325 1580.638263 OG Counties 7837583
## 1443 2521.745 3404.325 492.141864 OG Counties 7837583
## 1444 2521.745 3404.325 1035.544643 OG Counties 7837583
## 1445 2521.745 3404.325 1561.260174 OG Counties 7837583
## 1446 2521.745 3404.325 1871.705403 OG Counties 7837583
## 1447 2521.745 3404.325 1483.940963 OG Counties 7837583
## 1448 2521.745 3404.325 1380.219226 OG Counties 7837583
## 1449 2521.745 3404.325 2473.397321 OG Counties 7837583
## 1450 2521.745 3404.325 1122.418922 OG Counties 7837583
## 1451 2521.745 3404.325 1397.211577 OG Counties 7837583
## 1452 2521.745 3404.325 1045.819205 OG Counties 7837583
## 1453 2521.745 3404.325 2981.289385 OG Counties 7837583
## 1454 2521.745 3404.325 6333.624885 OG Counties 7837583
## 1455 2521.745 3404.325 1534.298249 OG Counties 7837583
## 1456 2521.745 3404.325 1202.986333 OG Counties 7837583
## 1457 2521.745 3404.325 1602.440254 OG Counties 7837583
## 1458 2521.745 3404.325 1523.350472 OG Counties 7837583
## 1459 2521.745 3404.325 10874.155701 OG Counties 7837583
## 1460 2521.745 3404.325 1108.883664 OG Counties 7837583
## 1461 2521.745 3404.325 2315.842668 OG Counties 7837583
## 1462 2521.745 3404.325 1488.355664 OG Counties 7837583
## 1463 2521.745 3404.325 1038.953526 OG Counties 7837583
## 1464 2521.745 3404.325 1192.383276 OG Counties 7837583
## 1465 2521.745 3404.325 3157.192075 OG Counties 7837583
## 1466 2521.745 3404.325 2659.405730 OG Counties 7837583
## 1467 2521.745 3404.325 1456.859186 OG Counties 7837583
## 1468 2521.745 3404.325 1794.454840 OG Counties 7837583
## 1469 2521.745 3404.325 511.910455 OG Counties 7837583
## 1470 2521.745 3404.325 5956.428672 OG Counties 7837583
## 1471 2521.745 3404.325 4312.438371 OG Counties 7837583
## 1472 2521.745 3404.325 2566.229477 OG Counties 7837583
## 1473 2521.745 3404.325 2123.334159 OG Counties 7837583
## 1474 2521.745 3404.325 1732.748976 OG Counties 7837583
## 1475 2521.745 3404.325 885.154104 OG Counties 7837583
## 1476 2521.745 3404.325 564.346310 OG Counties 7837583
## 1477 2521.745 3404.325 15656.386688 OG Counties 7837583
## 1478 2521.745 3404.325 12.704721 OG Counties 7837583
## 1479 2521.745 3404.325 1566.581277 OG Counties 7837583
## 1480 2521.745 3404.325 3029.343964 OG Counties 7837583
## 1481 2521.745 3404.325 684.156656 OG Counties 7837583
## 1482 2521.745 3404.325 2857.510196 OG Counties 7837583
## 1483 2521.745 3404.325 3398.244347 OG Counties 7837583
## 1484 2521.745 3404.325 867.508319 OG Counties 7837583
## 1485 2521.745 3404.325 2255.874309 OG Counties 7837583
## 1486 2521.745 3404.325 2470.395799 OG Counties 7837583
## 1487 2521.745 3404.325 1358.962785 OG Counties 7837583
## 1488 2521.745 3404.325 1298.978354 OG Counties 7837583
## 1489 2521.745 3404.325 1864.039105 OG Counties 7837583
## 1490 2521.745 3404.325 1096.504779 OG Counties 7837583
## 1491 2521.745 3404.325 972.378571 OG Counties 7837583
## 1492 2521.745 3404.325 603.733136 OG Counties 7837583
## 1493 2521.745 3404.325 860.029232 OG Counties 7837583
## 1494 2521.745 3404.325 1858.651097 OG Counties 7837583
## 1495 2521.745 3404.325 998.293465 OG Counties 7837583
## 1496 2521.745 3404.325 2932.351226 OG Counties 7837583
## 1497 2521.745 3404.325 1123.640658 OG Counties 7837583
## 1498 2521.745 3404.325 2246.616364 OG Counties 7837583
## 1499 2521.745 3404.325 1425.633601 OG Counties 7837583
## 1500 2521.745 3404.325 863.150513 OG Counties 7837583
## 1501 2521.745 3404.325 2381.937268 OG Counties 7837583
## 1502 2521.745 3404.325 1503.597275 OG Counties 7837583
## 1503 2521.745 3404.325 529.738263 OG Counties 7837583
## 1504 2521.745 3404.325 1723.754872 OG Counties 7837583
## 1505 2521.745 3404.325 1441.285421 OG Counties 7837583
## 1506 2521.745 3404.325 923.226654 OG Counties 7837583
## 1507 2521.745 3404.325 2245.455671 OG Counties 7837583
## 1508 2521.745 3404.325 1973.769549 OG Counties 7837583
## 1509 2521.745 3404.325 1762.337614 OG Counties 7837583
## 1510 2521.745 3404.325 1541.249599 OG Counties 7837583
## 1511 2521.745 3404.325 2935.915234 OG Counties 7837583
## 1512 2521.745 3404.325 18.930703 OG Counties 7837583
## 1513 2521.745 3404.325 795.522119 OG Counties 7837583
## 1514 2521.745 3404.325 28.785478 OG Counties 7837583
## 1515 2521.745 3404.325 1494.149621 OG Counties 7837583
## 1516 2521.745 3404.325 3029.650635 OG Counties 7837583
## 1517 2521.745 3404.325 3654.563198 OG Counties 7837583
## 1518 2521.745 3404.325 2463.030431 OG Counties 7837583
## 1519 2521.745 3404.325 1695.126575 OG Counties 7837583
## 1520 2521.745 3404.325 1683.840303 OG Counties 7837583
## 1521 2521.745 3404.325 1081.124241 OG Counties 7837583
## 1522 2521.745 3404.325 2456.626888 OG Counties 7837583
## 1523 2521.745 3404.325 794.012781 OG Counties 7837583
## 1524 2521.745 3404.325 1568.698654 OG Counties 7837583
## 1525 2521.745 3404.325 1304.848427 OG Counties 7837583
## 1526 2521.745 3404.325 165.501498 OG Counties 7837583
## 1527 2521.745 3404.325 1142.050173 OG Counties 7837583
## 1528 2521.745 3404.325 4468.353969 OG Counties 7837583
## 1529 2521.745 3404.325 2800.750328 OG Counties 7837583
## 1530 2521.745 3404.325 2351.944694 OG Counties 7837583
## 1531 2521.745 3404.325 834.502152 OG Counties 7837583
## 1532 2521.745 3404.325 944.187723 OG Counties 7837583
## 1533 2521.745 3404.325 12497.124397 OG Counties 7837583
## 1534 2521.745 3404.325 1384.837972 OG Counties 7837583
## 1535 2521.745 3404.325 1042.169695 OG Counties 7837583
## 1536 2521.745 3404.325 426.798094 OG Counties 7837583
## 1537 2521.745 3404.325 3686.030304 OG Counties 7837583
## 1538 2521.745 3404.325 1570.991273 OG Counties 7837583
## 1539 2521.745 3404.325 1025.635820 OG Counties 7837583
## 1540 2521.745 3404.325 3753.290153 OG Counties 7837583
## 1541 2521.745 3404.325 1499.709561 OG Counties 7837583
## 1542 2521.745 3404.325 1285.687240 OG Counties 7837583
## 1543 2521.745 3404.325 1517.223279 OG Counties 7837583
## 1544 2521.745 3404.325 1250.941093 OG Counties 7837583
## 1545 2521.745 3404.325 468.572338 OG Counties 7837583
## 1546 2521.745 3404.325 747.682708 OG Counties 7837583
## 1547 2521.745 3404.325 1284.175601 OG Counties 7837583
## 1548 2521.745 3404.325 1895.496318 OG Counties 7837583
## 1549 2521.745 3404.325 1385.700030 OG Counties 7837583
## 1550 2521.745 3404.325 459.104711 OG Counties 7837583
## 1551 2521.745 3404.325 2090.657698 OG Counties 7837583
## 1552 2521.745 3404.325 1041.216261 OG Counties 7837583
## 1553 2521.745 3404.325 1184.582164 OG Counties 7837583
## 1554 2521.745 3404.325 1567.768821 OG Counties 7837583
## 1555 2521.745 3404.325 1115.327121 OG Counties 7837583
## 1556 2521.745 3404.325 2332.323370 OG Counties 7837583
## 1557 2521.745 3404.325 1134.667286 OG Counties 7837583
## 1558 2521.745 3404.325 2086.919506 OG Counties 7837583
## 1559 2521.745 3404.325 766.752856 OG Counties 7837583
## 1560 2521.745 3404.325 2230.095346 OG Counties 7837583
## 1561 2521.745 3404.325 1558.941685 OG Counties 7837583
## 1562 2521.745 3404.325 416.177602 OG Counties 7837583
## 1563 2521.745 3404.325 15945.736547 OG Counties 7837583
## 1564 2521.745 3404.325 1613.849190 OG Counties 7837583
## 1565 2521.745 3404.325 1095.185359 OG Counties 7837583
## 1566 2521.745 3404.325 1435.124813 OG Counties 7837583
## 1567 2521.745 3404.325 1630.492813 OG Counties 7837583
## 1568 2521.745 3404.325 1477.726470 OG Counties 7837583
## 1569 2521.745 3404.325 1477.839806 OG Counties 7837583
## 1570 2521.745 3404.325 1527.002900 OG Counties 7837583
## 1571 2521.745 3404.325 1040.543270 OG Counties 7837583
## 1572 2521.745 3404.325 574.623392 OG Counties 7837583
## 1573 2521.745 3404.325 1676.717164 OG Counties 7837583
## 1574 2521.745 3404.325 626.679277 OG Counties 7837583
## 1575 2521.745 3404.325 2464.992693 OG Counties 7837583
## 1576 2521.745 3404.325 2364.042329 OG Counties 7837583
## 1577 2521.745 3404.325 1058.548678 OG Counties 7837583
## 1578 2521.745 3404.325 1565.936902 OG Counties 7837583
## 1579 2521.745 3404.325 838.925424 OG Counties 7837583
## 1580 2521.745 3404.325 1285.547287 OG Counties 7837583
## 1581 2521.745 3404.325 2752.966134 OG Counties 7837583
## 1582 2521.745 3404.325 1480.784892 OG Counties 7837583
## 1583 2521.745 3404.325 1535.054491 OG Counties 7837583
## 1584 2521.745 3404.325 2369.014313 OG Counties 7837583
## 1585 2521.745 3404.325 1358.060482 OG Counties 7837583
## 1586 2521.745 3404.325 1411.265304 OG Counties 7837583
## 1587 2521.745 3404.325 2497.710970 OG Counties 7837583
## 1588 2521.745 3404.325 797.244197 OG Counties 7837583
## 1589 2521.745 3404.325 1484.098530 OG Counties 7837583
## 1590 2521.745 3404.325 1424.358960 OG Counties 7837583
## 1591 2521.745 3404.325 2596.782169 OG Counties 7837583
## 1592 2521.745 3404.325 497.254814 OG Counties 7837583
## 1593 2521.745 3404.325 1461.091562 OG Counties 7837583
## 1594 2521.745 3404.325 1173.441225 OG Counties 7837583
## 1595 2521.745 3404.325 967.132828 OG Counties 7837583
## 1596 2521.745 3404.325 2615.071012 OG Counties 7837583
## 1597 2521.745 3404.325 1486.063491 OG Counties 7837583
## 1598 2521.745 3404.325 768.217491 OG Counties 7837583
## 1599 2521.745 3404.325 3232.342229 OG Counties 7837583
## 1600 2521.745 3404.325 1135.293538 OG Counties 7837583
## 1601 2521.745 3404.325 1411.197315 OG Counties 7837583
## 1602 2521.745 3404.325 920.435532 OG Counties 7837583
## 1603 2521.745 3404.325 3486.359985 OG Counties 7837583
## 1604 2521.745 3404.325 1926.605424 OG Counties 7837583
## 1605 2521.745 3404.325 1913.252352 OG Counties 7837583
## 1606 2521.745 3404.325 1913.041174 OG Counties 7837583
## 1607 2521.745 3404.325 2752.615209 OG Counties 7837583
## 1608 2521.745 3404.325 1028.241834 OG Counties 7837583
## 1609 2521.745 3404.325 1859.262403 OG Counties 7837583
## 1610 2521.745 3404.325 2096.113359 OG Counties 7837583
## 1611 2521.745 3404.325 1283.512044 OG Counties 7837583
## 1612 2521.745 3404.325 1587.488553 OG Counties 7837583
## 1613 2521.745 3404.325 3282.257172 OG Counties 7837583
## 1614 2521.745 3404.325 1036.158957 OG Counties 7837583
## 1615 2521.745 3404.325 632.427922 OG Counties 7837583
## 1616 2521.745 3404.325 1608.676675 OG Counties 7837583
## 1617 2521.745 3404.325 1482.990877 OG Counties 7837583
## 1618 2521.745 3404.325 1507.798346 OG Counties 7837583
## 1619 2521.745 3404.325 545.766856 OG Counties 7837583
## 1620 2521.745 3404.325 2233.938514 OG Counties 7837583
## 1621 2521.745 3404.325 1491.991104 OG Counties 7837583
## 1622 2521.745 3404.325 1294.269916 OG Counties 7837583
## 1623 2521.745 3404.325 1615.622325 OG Counties 7837583
## 1624 2521.745 3404.325 972.988844 OG Counties 7837583
## 1625 2521.745 3404.325 1247.693800 OG Counties 7837583
## 1626 2521.745 3404.325 1105.918709 OG Counties 7837583
## 1627 2521.745 3404.325 813.211797 OG Counties 7837583
## 1628 2521.745 3404.325 1732.948099 OG Counties 7837583
## 1629 2521.745 3404.325 1508.802994 OG Counties 7837583
## 1630 2521.745 3404.325 1429.840455 OG Counties 7837583
## 1631 2521.745 3404.325 1535.825979 OG Counties 7837583
## 1632 2521.745 3404.325 2317.313210 OG Counties 7837583
## 1633 2521.745 3404.325 1733.700607 OG Counties 7837583
## 1634 2521.745 3404.325 1652.660025 OG Counties 7837583
## 1635 2521.745 3404.325 1075.102522 OG Counties 7837583
## 1636 2521.745 3404.325 2059.905450 OG Counties 7837583
## 1637 2521.745 3404.325 1447.861399 OG Counties 7837583
## 1638 2521.745 3404.325 1844.037879 OG Counties 7837583
## 1639 2521.745 3404.325 2009.909409 OG Counties 7837583
## 1640 2521.745 3404.325 1057.256129 OG Counties 7837583
## 1641 2521.745 3404.325 2718.943768 OG Counties 7837583
## 1642 2521.745 3404.325 1350.654633 OG Counties 7837583
## 1643 2521.745 3404.325 1321.680112 OG Counties 7837583
## 1644 2521.745 3404.325 1340.046364 OG Counties 7837583
## 1645 2521.745 3404.325 1016.305028 OG Counties 7837583
## 1646 2521.745 3404.325 1484.392689 OG Counties 7837583
## 1647 2521.745 3404.325 1034.605399 OG Counties 7837583
## 1648 2521.745 3404.325 1693.756570 OG Counties 7837583
## 1649 2521.745 3404.325 1761.901716 OG Counties 7837583
## 1650 2521.745 3404.325 1488.895876 OG Counties 7837583
## 1651 2521.745 3404.325 2541.089225 OG Counties 7837583
## 1652 2521.745 3404.325 1245.114165 OG Counties 7837583
## 1653 2521.745 3404.325 4661.712947 OG Counties 7837583
## 1654 2521.745 3404.325 1281.572816 OG Counties 7837583
## 1655 2521.745 3404.325 2475.597106 OG Counties 7837583
## 1656 2521.745 3404.325 2766.519093 OG Counties 7837583
## 1657 2521.745 3404.325 1480.257152 OG Counties 7837583
## 1658 2521.745 3404.325 3162.440416 OG Counties 7837583
## 1659 2521.745 3404.325 1639.716941 OG Counties 7837583
## 1660 2521.745 3404.325 3709.156288 OG Counties 7837583
## 1661 2521.745 3404.325 2551.802033 OG Counties 7837583
## 1662 2521.745 3404.325 746.789708 OG Counties 7837583
## 1663 2521.745 3404.325 2526.360610 OG Counties 7837583
## 1664 2521.745 3404.325 2529.269609 OG Counties 7837583
## 1665 2521.745 3404.325 1402.409900 OG Counties 7837583
## 1666 2521.745 3404.325 2046.883454 OG Counties 7837583
## 1667 2521.745 3404.325 1332.998771 OG Counties 7837583
## 1668 2521.745 3404.325 893.123721 OG Counties 7837583
## 1669 2521.745 3404.325 4819.297730 OG Counties 7837583
## 1670 2521.745 3404.325 1202.314990 OG Counties 7837583
## 1671 2521.745 3404.325 9395.281690 OG Counties 7837583
## 1672 2521.745 3404.325 1252.050332 OG Counties 7837583
## 1673 2521.745 3404.325 4340.452001 OG Counties 7837583
## 1674 2521.745 3404.325 5601.468777 OG Counties 7837583
## 1675 2521.745 3404.325 3162.681741 OG Counties 7837583
## 1676 2521.745 3404.325 5367.568193 OG Counties 7837583
## 1677 2521.745 3404.325 842.000383 OG Counties 7837583
## 1678 2521.745 3404.325 2209.614272 OG Counties 7837583
## 1679 2521.745 3404.325 1647.773507 OG Counties 7837583
## 1680 2521.745 3404.325 511.038291 OG Counties 7837583
## 1681 2521.745 3404.325 633.470112 OG Counties 7837583
## 1682 2521.745 3404.325 1093.376802 OG Counties 7837583
## 1683 2521.745 3404.325 3640.570062 OG Counties 7837583
## 1684 2521.745 3404.325 3036.892300 OG Counties 7837583
## 1685 2521.745 3404.325 479.576917 OG Counties 7837583
## 1686 2521.745 3404.325 1038.742320 OG Counties 7837583
## 1687 2521.745 3404.325 1359.252380 OG Counties 7837583
## 1688 2521.745 3404.325 1519.687295 OG Counties 7837583
## 1689 2521.745 3404.325 1088.989594 OG Counties 7837583
## 1690 2521.745 3404.325 2481.397554 OG Counties 7837583
## 1691 2521.745 3404.325 2253.150795 OG Counties 7837583
## 1692 2521.745 3404.325 1266.825478 OG Counties 7837583
## 1693 2521.745 3404.325 1164.914656 OG Counties 7837583
## 1694 2521.745 3404.325 4615.620745 OG Counties 7837583
## 1695 2521.745 3404.325 2539.209183 OG Counties 7837583
## 1696 2521.745 3404.325 1315.732157 OG Counties 7837583
## 1697 2521.745 3404.325 1798.183349 OG Counties 7837583
## 1698 2521.745 3404.325 2345.594350 OG Counties 7837583
## 1699 2521.745 3404.325 618.437533 OG Counties 7837583
## 1700 2521.745 3404.325 995.953265 OG Counties 7837583
## 1701 2521.745 3404.325 2573.503583 OG Counties 7837583
## 1702 2521.745 3404.325 1688.977972 OG Counties 7837583
## 1703 2521.745 3404.325 1475.216945 OG Counties 7837583
## 1704 2521.745 3404.325 2315.743589 OG Counties 7837583
## 1705 2521.745 3404.325 1656.167279 OG Counties 7837583
## 1706 2521.745 3404.325 1365.054847 OG Counties 7837583
## 1707 2521.745 3404.325 1659.434498 OG Counties 7837583
## 1708 2521.745 3404.325 2005.799700 OG Counties 7837583
## 1709 2521.745 3404.325 2118.328522 OG Counties 7837583
## 1710 2521.745 3404.325 504.579944 OG Counties 7837583
## 1711 2521.745 3404.325 1994.288568 OG Counties 7837583
## 1712 2521.745 3404.325 16071.999803 OG Counties 7837583
## 1713 2521.745 3404.325 2808.857209 OG Counties 7837583
## 1714 2521.745 3404.325 1457.986636 OG Counties 7837583
## 1715 2521.745 3404.325 2032.817397 OG Counties 7837583
## 1716 2521.745 3404.325 1052.581838 OG Counties 7837583
## 1717 2521.745 3404.325 728.032895 OG Counties 7837583
## 1718 2521.745 3404.325 1504.773018 OG Counties 7837583
## 1719 2521.745 3404.325 6485.419040 OG Counties 7837583
## 1720 2521.745 3404.325 23863.261504 OG Counties 7837583
## 1721 2521.745 3404.325 2738.516777 OG Counties 7837583
## 1722 2521.745 3404.325 14131.286020 OG Counties 7837583
## 1723 2521.745 3404.325 2335.180453 OG Counties 7837583
## 1724 2521.745 3404.325 880.512995 OG Counties 7837583
## 1725 2521.745 3404.325 1481.054623 OG Counties 7837583
## 1726 2521.745 3404.325 3227.828478 OG Counties 7837583
## 1727 2521.745 3404.325 27111.903221 OG Counties 7837583
## 1728 2521.745 3404.325 1448.783748 OG Counties 7837583
## 1729 2521.745 3404.325 13941.088437 OG Counties 7837583
## 1730 2521.745 3404.325 5902.132661 OG Counties 7837583
## 1731 2521.745 3404.325 4908.543451 OG Counties 7837583
## 1732 2521.745 3404.325 2508.760324 OG Counties 7837583
## 1733 2521.745 3404.325 1833.678965 OG Counties 7837583
## 1734 2521.745 3404.325 1254.048108 OG Counties 7837583
## 1735 2521.745 3404.325 1193.625703 OG Counties 7837583
## 1736 2521.745 3404.325 3887.762492 OG Counties 7837583
## 1737 2521.745 3404.325 2051.080230 OG Counties 7837583
## 1738 2521.745 3404.325 2426.451905 OG Counties 7837583
## 1739 2521.745 3404.325 1498.629168 OG Counties 7837583
## 1740 2521.745 3404.325 2537.833857 OG Counties 7837583
## 1741 2521.745 3404.325 10937.939160 OG Counties 7837583
## 1742 2521.745 3404.325 1114.033987 OG Counties 7837583
## 1743 2521.745 3404.325 2831.037008 OG Counties 7837583
## 1744 2521.745 3404.325 660.630307 OG Counties 7837583
## 1745 2521.745 3404.325 1899.025226 OG Counties 7837583
## 1746 2521.745 3404.325 606.212218 OG Counties 7837583
## 1747 2521.745 3404.325 1495.896303 OG Counties 7837583
## 1748 2521.745 3404.325 2962.421179 OG Counties 7837583
## 1749 2521.745 3404.325 923.121103 OG Counties 7837583
## 1750 2521.745 3404.325 2416.472163 OG Counties 7837583
## 1751 2521.745 3404.325 2353.611284 OG Counties 7837583
## 1752 2521.745 3404.325 1121.358330 OG Counties 7837583
## 1753 2521.745 3404.325 963.490975 OG Counties 7837583
## 1754 2521.745 3404.325 1706.426882 OG Counties 7837583
## 1755 2521.745 3404.325 1007.380735 OG Counties 7837583
## 1756 2521.745 3404.325 3734.814326 OG Counties 7837583
## 1757 2521.745 3404.325 2049.089287 OG Counties 7837583
## 1758 2521.745 3404.325 12342.671523 OG Counties 7837583
## 1759 2521.745 3404.325 1007.296931 OG Counties 7837583
## 1760 2521.745 3404.325 1246.982729 OG Counties 7837583
## 1761 2521.745 3404.325 726.901417 OG Counties 7837583
## 1762 2521.745 3404.325 1807.133131 OG Counties 7837583
## 1763 2521.745 3404.325 1106.338206 OG Counties 7837583
## 1764 2521.745 3404.325 1992.060190 OG Counties 7837583
## 1765 2521.745 3404.325 2328.222526 OG Counties 7837583
## 1766 2521.745 3404.325 1852.745347 OG Counties 7837583
## 1767 2521.745 3404.325 1115.617623 OG Counties 7837583
## 1768 2521.745 3404.325 1491.307431 OG Counties 7837583
## 1769 2521.745 3404.325 1716.107107 OG Counties 7837583
## 1770 2521.745 3404.325 14307.292404 OG Counties 7837583
## 1771 2521.745 3404.325 1495.553970 OG Counties 7837583
## 1772 2521.745 3404.325 1199.452686 OG Counties 7837583
## 1773 2521.745 3404.325 723.551469 OG Counties 7837583
## 1774 2521.745 3404.325 1395.303361 OG Counties 7837583
## 1775 2521.745 3404.325 3904.898014 OG Counties 7837583
## 1776 2521.745 3404.325 1126.354770 OG Counties 7837583
## 1777 2521.745 3404.325 2074.768572 OG Counties 7837583
## 1778 2521.745 3404.325 2832.169077 OG Counties 7837583
## 1779 2521.745 3404.325 2047.251947 OG Counties 7837583
## 1780 2521.745 3404.325 615.600737 OG Counties 7837583
## 1781 2521.745 3404.325 1942.515282 OG Counties 7837583
## 1782 2521.745 3404.325 2224.215369 OG Counties 7837583
## 1783 2521.745 3404.325 12443.867711 OG Counties 7837583
## 1784 2521.745 3404.325 3307.959831 OG Counties 7837583
## 1785 2521.745 3404.325 2629.738154 OG Counties 7837583
## 1786 2521.745 3404.325 1447.995486 OG Counties 7837583
## 1787 2521.745 3404.325 1437.852102 OG Counties 7837583
## 1788 2521.745 3404.325 2069.666765 OG Counties 7837583
## 1789 2521.745 3404.325 3716.840827 OG Counties 7837583
## 1790 2521.745 3404.325 2096.959036 OG Counties 7837583
## 1791 2521.745 3404.325 733.129566 OG Counties 7837583
## 1792 2521.745 3404.325 1137.178706 OG Counties 7837583
## 1793 2521.745 3404.325 1221.661369 OG Counties 7837583
## 1794 2521.745 3404.325 1755.243127 OG Counties 7837583
## 1795 2521.745 3404.325 903.856571 OG Counties 7837583
## 1796 2521.745 3404.325 1225.962636 OG Counties 7837583
## 1797 2521.745 3404.325 1855.061193 OG Counties 7837583
## 1798 2521.745 3404.325 1477.858533 OG Counties 7837583
## 1799 2521.745 3404.325 4614.532925 OG Counties 7837583
## 1800 2521.745 3404.325 1294.979130 OG Counties 7837583
## 1801 2521.745 3404.325 792.987930 OG Counties 7837583
## 1802 2521.745 3404.325 2072.883074 OG Counties 7837583
## 1803 2521.745 3404.325 1752.601188 OG Counties 7837583
## 1804 2521.745 3404.325 2897.482411 OG Counties 7837583
## 1805 2521.745 3404.325 1376.136261 OG Counties 7837583
## 1806 2521.745 3404.325 7647.462537 OG Counties 7837583
## 1807 2521.745 3404.325 672.889152 OG Counties 7837583
## 1808 2521.745 3404.325 1865.262174 OG Counties 7837583
## 1809 2521.745 3404.325 13904.985543 OG Counties 7837583
## 1810 2521.745 3404.325 2439.349507 OG Counties 7837583
## 1811 2521.745 3404.325 1119.635826 OG Counties 7837583
## 1812 2521.745 3404.325 1536.057570 OG Counties 7837583
## 1813 2521.745 3404.325 1078.618557 OG Counties 7837583
## 1814 2521.745 3404.325 27569.467643 OG Counties 7837583
## 1815 2521.745 3404.325 9976.453147 OG Counties 7837583
## 1816 2521.745 3404.325 1070.325940 OG Counties 7837583
## 1817 2521.745 3404.325 2032.417388 OG Counties 7837583
## 1818 2521.745 3404.325 4864.694761 OG Counties 7837583
## 1819 2521.745 3404.325 673.640216 OG Counties 7837583
## 1820 2521.745 3404.325 6933.001197 OG Counties 7837583
## 1821 2521.745 3404.325 1414.798927 OG Counties 7837583
## 1822 2521.745 3404.325 2688.572622 OG Counties 7837583
## 1823 2521.745 3404.325 540.014775 OG Counties 7837583
## 1824 2521.745 3404.325 15429.303885 OG Counties 7837583
## 1825 2521.745 3404.325 1073.597707 OG Counties 7837583
## 1826 2521.745 3404.325 612.954157 OG Counties 7837583
## 1827 2521.745 3404.325 1702.323461 OG Counties 7837583
## 1828 2521.745 3404.325 2161.649101 OG Counties 7837583
## 1829 2521.745 3404.325 1560.589900 OG Counties 7837583
## 1830 2521.745 3404.325 6802.251519 OG Counties 7837583
## 1831 2521.745 3404.325 1763.414309 OG Counties 7837583
## 1832 2521.745 3404.325 1770.860008 OG Counties 7837583
## 1833 2521.745 3404.325 2980.957565 OG Counties 7837583
## 1834 2521.745 3404.325 975.651989 OG Counties 7837583
## 1835 2521.745 3404.325 2183.613812 OG Counties 7837583
## 1836 2521.745 3404.325 2444.188770 OG Counties 7837583
## 1837 2521.745 3404.325 1727.051173 OG Counties 7837583
## 1838 2521.745 3404.325 1338.277280 OG Counties 7837583
## 1839 2521.745 3404.325 1708.127169 OG Counties 7837583
## 1840 2521.745 3404.325 674.476426 OG Counties 7837583
## 1841 2521.745 3404.325 1055.189269 OG Counties 7837583
## 1842 2521.745 3404.325 2277.074545 OG Counties 7837583
## 1843 2521.745 3404.325 1234.550418 OG Counties 7837583
## 1844 2521.745 3404.325 1396.379793 OG Counties 7837583
## 1845 2521.745 3404.325 6652.239496 OG Counties 7837583
## 1846 2521.745 3404.325 1454.528384 OG Counties 7837583
## 1847 2521.745 3404.325 2661.602132 OG Counties 7837583
## 1848 2521.745 3404.325 2368.821245 OG Counties 7837583
## 1849 2521.745 3404.325 677.711815 OG Counties 7837583
## 1850 2521.745 3404.325 1032.198477 OG Counties 7837583
## 1851 2521.745 3404.325 1552.382901 OG Counties 7837583
## 1852 2521.745 3404.325 2163.524571 OG Counties 7837583
## 1853 2521.745 3404.325 7421.118168 OG Counties 7837583
## 1854 2521.745 3404.325 2483.904875 OG Counties 7837583
## 1855 2521.745 3404.325 815.424224 OG Counties 7837583
## 1856 2521.745 3404.325 1681.927415 OG Counties 7837583
## 1857 2521.745 3404.325 1508.548862 OG Counties 7837583
## 1858 2521.745 3404.325 8738.970308 OG Counties 7837583
## 1859 2521.745 3404.325 2280.602823 OG Counties 7837583
## 1860 2521.745 3404.325 2518.663477 OG Counties 7837583
## 1861 2521.745 3404.325 1861.608408 OG Counties 7837583
## 1862 2521.745 3404.325 5166.565292 OG Counties 7837583
## 1863 2521.745 3404.325 2327.605525 OG Counties 7837583
## 1864 2521.745 3404.325 671.443101 OG Counties 7837583
## 1865 2521.745 3404.325 2287.871661 OG Counties 7837583
## 1866 2521.745 3404.325 13176.593858 OG Counties 7837583
## 1867 2521.745 3404.325 269.205323 OG Counties 7837583
## 1868 2521.745 3404.325 1987.014467 OG Counties 7837583
## 1869 2521.745 3404.325 1538.992221 OG Counties 7837583
## 1870 2521.745 3404.325 579.178212 OG Counties 7837583
## 1871 2521.745 3404.325 1507.489485 OG Counties 7837583
## 1872 2521.745 3404.325 1829.100527 OG Counties 7837583
## 1873 2521.745 3404.325 1089.265857 OG Counties 7837583
## 1874 2521.745 3404.325 1982.879039 OG Counties 7837583
## 1875 2521.745 3404.325 1613.670429 OG Counties 7837583
## 1876 2521.745 3404.325 960.035679 OG Counties 7837583
## 1877 2521.745 3404.325 1497.213236 OG Counties 7837583
## 1878 2521.745 3404.325 1644.764967 OG Counties 7837583
## 1879 2521.745 3404.325 1896.143698 OG Counties 7837583
## 1880 2521.745 3404.325 644.855363 OG Counties 7837583
## 1881 2521.745 3404.325 496.497022 OG Counties 7837583
## 1882 2521.745 3404.325 10321.591662 OG Counties 7837583
## 1883 2521.745 3404.325 964.415033 OG Counties 7837583
## 1884 2521.745 3404.325 1196.348324 OG Counties 7837583
## 1885 2521.745 3404.325 1849.445342 OG Counties 7837583
## 1886 2521.745 3404.325 1490.517202 OG Counties 7837583
## 1887 2521.745 3404.325 1290.500435 OG Counties 7837583
## 1888 2521.745 3404.325 2411.539129 OG Counties 7837583
## 1889 2521.745 3404.325 747.536438 OG Counties 7837583
## 1890 2521.745 3404.325 27.348874 OG Counties 7837583
## 1891 2521.745 3404.325 231.579317 OG Counties 7837583
## 1892 2521.745 3404.325 1609.870056 OG Counties 7837583
## 1893 2521.745 3404.325 1297.466541 OG Counties 7837583
## 1894 2521.745 3404.325 1476.487845 OG Counties 7837583
## 1895 2521.745 3404.325 9883.840499 OG Counties 7837583
## 1896 2521.745 3404.325 2991.312819 OG Counties 7837583
## 1897 2521.745 3404.325 1407.248545 OG Counties 7837583
## 1898 2521.745 3404.325 1774.707662 OG Counties 7837583
## 1899 2521.745 3404.325 3363.224102 OG Counties 7837583
## 1900 2521.745 3404.325 1984.047428 OG Counties 7837583
## 1901 2521.745 3404.325 2265.385252 OG Counties 7837583
## 1902 2521.745 3404.325 1202.389491 OG Counties 7837583
## 1903 2521.745 3404.325 493.019283 OG Counties 7837583
## 1904 2521.745 3404.325 1411.410199 OG Counties 7837583
## 1905 2521.745 3404.325 544.984797 OG Counties 7837583
## 1906 2521.745 3404.325 1089.485294 OG Counties 7837583
## 1907 2521.745 3404.325 331.878111 OG Counties 7837583
## 1908 2521.745 3404.325 1264.082556 OG Counties 7837583
## 1909 2521.745 3404.325 1709.705462 OG Counties 7837583
## 1910 2521.745 3404.325 1395.712664 OG Counties 7837583
## 1911 2521.745 3404.325 1057.957329 OG Counties 7837583
## 1912 2521.745 3404.325 384.648871 OG Counties 7837583
## 1913 2521.745 3404.325 69.350260 OG Counties 7837583
## 1914 2521.745 3404.325 6591.794611 OG Counties 7837583
## 1915 2521.745 3404.325 446.646317 OG Counties 7837583
## 1916 2521.745 3404.325 1770.977888 OG Counties 7837583
## 1917 2521.745 3404.325 1130.729153 OG Counties 7837583
## 1918 2521.745 3404.325 5656.592448 OG Counties 7837583
## 1919 2521.745 3404.325 1879.788172 OG Counties 7837583
## 1920 2521.745 3404.325 36.285017 OG Counties 7837583
## 1921 2521.745 3404.325 1397.076452 OG Counties 7837583
## 1922 2521.745 3404.325 1665.220513 OG Counties 7837583
## 1923 2521.745 3404.325 741.565627 OG Counties 7837583
## 1924 2521.745 3404.325 844.821048 OG Counties 7837583
## 1925 2521.745 3404.325 1086.644643 OG Counties 7837583
## 1926 2521.745 3404.325 928.082030 OG Counties 7837583
## 1927 2521.745 3404.325 1252.529974 OG Counties 7837583
## 1928 2521.745 3404.325 1858.688753 OG Counties 7837583
## 1929 2521.745 3404.325 1874.848839 OG Counties 7837583
## 1930 2521.745 3404.325 1095.753847 OG Counties 7837583
## 1931 2521.745 3404.325 909.843651 OG Counties 7837583
## 1932 2521.745 3404.325 5497.855422 OG Counties 7837583
## 1933 2521.745 3404.325 484.395747 OG Counties 7837583
## 1934 2521.745 3404.325 1503.515078 OG Counties 7837583
## 1935 2521.745 3404.325 1204.329689 OG Counties 7837583
## 1936 2521.745 3404.325 1268.973788 OG Counties 7837583
## 1937 2521.745 3404.325 2382.663334 OG Counties 7837583
## 1938 2521.745 3404.325 2251.446753 OG Counties 7837583
## 1939 2521.745 3404.325 511.451689 OG Counties 7837583
## 1940 2521.745 3404.325 527.881166 OG Counties 7837583
## 1941 2521.745 3404.325 1843.127703 OG Counties 7837583
## 1942 2521.745 3404.325 952.754107 OG Counties 7837583
## 1943 2521.745 3404.325 4686.597243 OG Counties 7837583
## 1944 2521.745 3404.325 716.385584 OG Counties 7837583
## 1945 2521.745 3404.325 11044.753865 OG Counties 7837583
## 1946 2521.745 3404.325 2406.418375 OG Counties 7837583
## 1947 2521.745 3404.325 1667.890985 OG Counties 7837583
## 1948 2521.745 3404.325 2348.566185 OG Counties 7837583
## 1949 2521.745 3404.325 2745.019072 OG Counties 7837583
## 1950 2521.745 3404.325 632.067399 OG Counties 7837583
## 1951 2521.745 3404.325 2361.085314 OG Counties 7837583
## 1952 2521.745 3404.325 635.136925 OG Counties 7837583
## 1953 2521.745 3404.325 1418.271310 OG Counties 7837583
## 1954 2521.745 3404.325 798.034817 OG Counties 7837583
## 1955 2521.745 3404.325 2099.515400 OG Counties 7837583
## 1956 2521.745 3404.325 2788.339884 OG Counties 7837583
## 1957 2521.745 3404.325 4015.662870 OG Counties 7837583
## 1958 2521.745 3404.325 1300.767387 OG Counties 7837583
## 1959 2521.745 3404.325 1168.013687 OG Counties 7837583
## 1960 2521.745 3404.325 1963.340543 OG Counties 7837583
## 1961 2521.745 3404.325 916.907726 OG Counties 7837583
## 1962 2521.745 3404.325 5321.363169 OG Counties 7837583
## 1963 2521.745 3404.325 1367.071723 OG Counties 7837583
## 1964 2521.745 3404.325 887.158302 OG Counties 7837583
## 1965 2521.745 3404.325 1758.605248 OG Counties 7837583
## 1966 2521.745 3404.325 1194.081939 OG Counties 7837583
## 1967 2521.745 3404.325 544.072358 OG Counties 7837583
## 1968 2521.745 3404.325 2119.994792 OG Counties 7837583
## 1969 2521.745 3404.325 1269.983450 OG Counties 7837583
## 1970 2521.745 3404.325 1576.634187 OG Counties 7837583
## 1971 2521.745 3404.325 690.609684 OG Counties 7837583
## 1972 2521.745 3404.325 1460.861276 OG Counties 7837583
## 1973 2521.745 3404.325 1877.939781 OG Counties 7837583
## 1974 2521.745 3404.325 780.659586 OG Counties 7837583
## 1975 2521.745 3404.325 1138.626639 OG Counties 7837583
## 1976 2521.745 3404.325 2637.513163 OG Counties 7837583
## 1977 2521.745 3404.325 1481.049277 OG Counties 7837583
## 1978 2521.745 3404.325 2313.361248 OG Counties 7837583
## 1979 2521.745 3404.325 16117.194787 OG Counties 7837583
## 1980 2521.745 3404.325 21121.978033 OG Counties 7837583
## 1981 2521.745 3404.325 599.649324 OG Counties 7837583
## 1982 2521.745 3404.325 1422.188032 OG Counties 7837583
## 1983 2521.745 3404.325 3854.217146 OG Counties 7837583
## 1984 2521.745 3404.325 768.922387 OG Counties 7837583
## 1985 2521.745 3404.325 2739.221448 OG Counties 7837583
## 1986 2521.745 3404.325 2238.595074 OG Counties 7837583
## 1987 2521.745 3404.325 1329.284909 OG Counties 7837583
## 1988 2521.745 3404.325 2952.613423 OG Counties 7837583
## 1989 2521.745 3404.325 1287.472974 OG Counties 7837583
## 1990 2521.745 3404.325 5404.582031 OG Counties 7837583
## 1991 2521.745 3404.325 1119.610495 OG Counties 7837583
## 1992 2521.745 3404.325 1038.659198 OG Counties 7837583
## 1993 2521.745 3404.325 4653.061047 OG Counties 7837583
## 1994 2521.745 3404.325 3380.488116 OG Counties 7837583
## 1995 2521.745 3404.325 4699.541793 OG Counties 7837583
## 1996 2521.745 3404.325 12291.789545 OG Counties 7837583
## 1997 2521.745 3404.325 1037.863054 OG Counties 7837583
## 1998 2521.745 3404.325 1195.077400 OG Counties 7837583
## 1999 2521.745 3404.325 1992.385898 OG Counties 7837583
## 2000 2521.745 3404.325 7732.017319 OG Counties 7837583
## 2001 2521.745 3404.325 923.315102 OG Counties 7837583
## 2002 2521.745 3404.325 1619.521335 OG Counties 7837583
## 2003 2521.745 3404.325 1756.322991 OG Counties 7837583
## 2004 2521.745 3404.325 1054.254968 OG Counties 7837583
## 2005 2521.745 3404.325 795.952549 OG Counties 7837583
## 2006 2521.745 3404.325 1675.356734 OG Counties 7837583
## 2007 2521.745 3404.325 4905.396879 OG Counties 7837583
## 2008 2521.745 3404.325 524.490290 OG Counties 7837583
## 2009 2521.745 3404.325 655.743652 OG Counties 7837583
## 2010 2521.745 3404.325 3894.565231 OG Counties 7837583
## 2011 2521.745 3404.325 1107.795654 OG Counties 7837583
## 2012 2521.745 3404.325 1584.676226 OG Counties 7837583
## 2013 2521.745 3404.325 2371.149821 OG Counties 7837583
## 2014 2521.745 3404.325 2057.568130 OG Counties 7837583
## 2015 2521.745 3404.325 1101.804415 OG Counties 7837583
## 2016 2521.745 3404.325 1315.397764 OG Counties 7837583
## 2017 2521.745 3404.325 1579.246324 OG Counties 7837583
## 2018 2521.745 3404.325 2435.301133 OG Counties 7837583
## 2019 2521.745 3404.325 1138.381667 OG Counties 7837583
## 2020 2521.745 3404.325 678.824176 OG Counties 7837583
## 2021 2521.745 3404.325 1348.113230 OG Counties 7837583
## 2022 2521.745 3404.325 2233.889529 OG Counties 7837583
## 2023 2521.745 3404.325 2728.167102 OG Counties 7837583
## 2024 2521.745 3404.325 890.178385 OG Counties 7837583
## 2025 2521.745 3404.325 1266.331827 OG Counties 7837583
## 2026 2521.745 3404.325 433.140951 OG Counties 7837583
## 2027 2521.745 3404.325 1877.684413 OG Counties 7837583
## 2028 2521.745 3404.325 1319.303534 OG Counties 7837583
## 2029 2521.745 3404.325 1394.310511 OG Counties 7837583
## 2030 2521.745 3404.325 1110.607150 OG Counties 7837583
## 2031 2521.745 3404.325 2432.677037 OG Counties 7837583
## 2032 2521.745 3404.325 5038.826174 OG Counties 7837583
## 2033 2521.745 3404.325 1197.119101 OG Counties 7837583
## 2034 2521.745 3404.325 1257.166314 OG Counties 7837583
## 2035 2521.745 3404.325 1307.395115 OG Counties 7837583
## 2036 2521.745 3404.325 3602.153504 OG Counties 7837583
## 2037 2521.745 3404.325 1262.672288 OG Counties 7837583
## 2038 2521.745 3404.325 1035.531284 OG Counties 7837583
## 2039 2521.745 3404.325 2783.855075 OG Counties 7837583
## 2040 2521.745 3404.325 1925.909794 OG Counties 7837583
## 2041 2521.745 3404.325 3057.290290 OG Counties 7837583
## 2042 2521.745 3404.325 931.083315 OG Counties 7837583
## 2043 2521.745 3404.325 1640.815415 OG Counties 7837583
## 2044 2521.745 3404.325 1146.346560 OG Counties 7837583
## 2045 2521.745 3404.325 16995.732558 OG Counties 7837583
## 2046 2521.745 3404.325 1244.911567 OG Counties 7837583
## 2047 2521.745 3404.325 8204.798454 OG Counties 7837583
## 2048 2521.745 3404.325 2419.080110 OG Counties 7837583
## 2049 2521.745 3404.325 1424.460645 OG Counties 7837583
## 2050 2521.745 3404.325 2218.991549 OG Counties 7837583
## 2051 2521.745 3404.325 15500.875834 OG Counties 7837583
## 2052 2521.745 3404.325 664.620844 OG Counties 7837583
## 2053 2521.745 3404.325 2685.989992 OG Counties 7837583
## 2054 2521.745 3404.325 1295.529781 OG Counties 7837583
## 2055 2521.745 3404.325 1186.493908 OG Counties 7837583
## 2056 2521.745 3404.325 2571.812594 OG Counties 7837583
## 2057 2521.745 3404.325 1471.979640 OG Counties 7837583
## 2058 2521.745 3404.325 1171.733715 OG Counties 7837583
## 2059 2521.745 3404.325 3055.426301 OG Counties 7837583
## 2060 2521.745 3404.325 8618.632036 OG Counties 7837583
## 2061 2521.745 3404.325 466.702378 OG Counties 7837583
## 2062 2521.745 3404.325 1682.463924 OG Counties 7837583
## 2063 2521.745 3404.325 1493.809580 OG Counties 7837583
## 2064 2521.745 3404.325 1873.619731 OG Counties 7837583
## 2065 2521.745 3404.325 885.245872 OG Counties 7837583
## 2066 2521.745 3404.325 1067.590572 OG Counties 7837583
## 2067 2521.745 3404.325 674.836999 OG Counties 7837583
## 2068 2521.745 3404.325 1339.328483 OG Counties 7837583
## 2069 2521.745 3404.325 2202.165944 OG Counties 7837583
## 2070 2521.745 3404.325 2023.122588 OG Counties 7837583
## 2071 2521.745 3404.325 2168.813447 OG Counties 7837583
## 2072 2521.745 3404.325 1303.601475 OG Counties 7837583
## 2073 2521.745 3404.325 2040.681675 OG Counties 7837583
## 2074 2521.745 3404.325 1538.982013 OG Counties 7837583
## 2075 2521.745 3404.325 944.585609 OG Counties 7837583
## 2076 2521.745 3404.325 1361.749972 OG Counties 7837583
## 2077 2521.745 3404.325 1087.852826 OG Counties 7837583
## 2078 2521.745 3404.325 1421.474054 OG Counties 7837583
## 2079 2521.745 3404.325 1354.707980 OG Counties 7837583
## 2080 2521.745 3404.325 1066.039719 OG Counties 7837583
## 2081 2521.745 3404.325 674.841213 OG Counties 7837583
## 2082 2521.745 3404.325 1912.562464 OG Counties 7837583
## 2083 2521.745 3404.325 4431.298375 OG Counties 7837583
## 2084 2521.745 3404.325 313.446589 OG Counties 7837583
## 2085 2521.745 3404.325 3240.045668 OG Counties 7837583
## 2086 2521.745 3404.325 1637.455973 OG Counties 7837583
## 2087 2521.745 3404.325 1805.131017 OG Counties 7837583
## 2088 2521.745 3404.325 2366.355060 OG Counties 7837583
## 2089 2521.745 3404.325 1389.150176 OG Counties 7837583
## 2090 2521.745 3404.325 2541.650370 OG Counties 7837583
## 2091 2521.745 3404.325 742.239263 OG Counties 7837583
## 2092 2521.745 3404.325 2316.494526 OG Counties 7837583
## 2093 2521.745 3404.325 789.877495 OG Counties 7837583
## 2094 2521.745 3404.325 4840.154129 OG Counties 7837583
## 2095 2521.745 3404.325 1093.193084 OG Counties 7837583
## 2096 2521.745 3404.325 978.978290 OG Counties 7837583
## 2097 2521.745 3404.325 3050.032096 OG Counties 7837583
## 2098 2521.745 3404.325 18068.171772 OG Counties 7837583
## 2099 2521.745 3404.325 2086.231577 OG Counties 7837583
## 2100 2521.745 3404.325 989.829346 OG Counties 7837583
## 2101 2521.745 3404.325 507.320360 OG Counties 7837583
## 2102 2521.745 3404.325 1723.777889 OG Counties 7837583
## 2103 2521.745 3404.325 1548.974010 OG Counties 7837583
## 2104 2521.745 3404.325 896.744836 OG Counties 7837583
## 2105 2521.745 3404.325 1175.759058 OG Counties 7837583
## 2106 2521.745 3404.325 1417.300569 OG Counties 7837583
## 2107 2521.745 3404.325 1177.625844 OG Counties 7837583
## 2108 2521.745 3404.325 985.759315 OG Counties 7837583
## 2109 2521.745 3404.325 1847.187133 OG Counties 7837583
## 2110 2521.745 3404.325 11848.454205 OG Counties 7837583
## 2111 2521.745 3404.325 7648.100928 OG Counties 7837583
## 2112 2521.745 3404.325 2714.275416 OG Counties 7837583
## 2113 2521.745 3404.325 728.172489 OG Counties 7837583
## 2114 2521.745 3404.325 2628.993780 OG Counties 7837583
## 2115 2521.745 3404.325 1250.948948 OG Counties 7837583
## 2116 2521.745 3404.325 1853.972591 OG Counties 7837583
## 2117 2521.745 3404.325 1481.933215 OG Counties 7837583
## 2118 2521.745 3404.325 5508.104335 OG Counties 7837583
## 2119 2521.745 3404.325 659.761934 OG Counties 7837583
## 2120 2521.745 3404.325 1788.811179 OG Counties 7837583
## 2121 2521.745 3404.325 3342.574920 OG Counties 7837583
## 2122 2521.745 3404.325 10010.559858 OG Counties 7837583
## 2123 2521.745 3404.325 904.830890 OG Counties 7837583
## 2124 2521.745 3404.325 2502.807326 OG Counties 7837583
## 2125 2521.745 3404.325 1459.154727 OG Counties 7837583
## 2126 2521.745 3404.325 4296.282399 OG Counties 7837583
## 2127 2521.745 3404.325 11687.117867 OG Counties 7837583
## 2128 2521.745 3404.325 7975.124283 OG Counties 7837583
## 2129 2521.745 3404.325 1808.503522 OG Counties 7837583
## 2130 2521.745 3404.325 1966.103422 OG Counties 7837583
## 2131 2521.745 3404.325 1599.187749 OG Counties 7837583
## 2132 2521.745 3404.325 4914.809194 OG Counties 7837583
## 2133 2521.745 3404.325 1851.562986 OG Counties 7837583
## 2134 2521.745 3404.325 1578.453001 OG Counties 7837583
## 2135 2521.745 3404.325 1102.991556 OG Counties 7837583
## 2136 2521.745 3404.325 2233.078749 OG Counties 7837583
## 2137 2521.745 3404.325 2134.827834 OG Counties 7837583
## 2138 2521.745 3404.325 5861.332826 OG Counties 7837583
## 2139 2521.745 3404.325 1367.331155 OG Counties 7837583
## 2140 2521.745 3404.325 2333.597753 OG Counties 7837583
## 2141 2521.745 3404.325 2471.587948 OG Counties 7837583
## 2142 2521.745 3404.325 5005.005028 OG Counties 7837583
## 2143 2521.745 3404.325 1358.082610 OG Counties 7837583
## 2144 2521.745 3404.325 1116.635851 OG Counties 7837583
## 2145 2521.745 3404.325 17218.876866 OG Counties 7837583
## 2146 2521.745 3404.325 6147.947298 OG Counties 7837583
## 2147 2521.745 3404.325 1868.431733 OG Counties 7837583
## 2148 2521.745 3404.325 1584.692844 OG Counties 7837583
## 2149 2521.745 3404.325 826.120705 OG Counties 7837583
## 2150 2521.745 3404.325 844.080405 OG Counties 7837583
## 2151 2521.745 3404.325 1122.435581 OG Counties 7837583
## 2152 2521.745 3404.325 1182.804165 OG Counties 7837583
## 2153 2521.745 3404.325 1217.621247 OG Counties 7837583
## 2154 2521.745 3404.325 3593.374197 OG Counties 7837583
## 2155 2521.745 3404.325 2724.989374 OG Counties 7837583
## 2156 2521.745 3404.325 1876.419674 OG Counties 7837583
## 2157 2521.745 3404.325 2620.421921 OG Counties 7837583
## 2158 2521.745 3404.325 690.495330 OG Counties 7837583
## 2159 2521.745 3404.325 471.359151 OG Counties 7837583
## 2160 2521.745 3404.325 2549.151847 OG Counties 7837583
## 2161 2521.745 3404.325 2972.362883 OG Counties 7837583
## 2162 2521.745 3404.325 1166.674553 OG Counties 7837583
## 2163 2521.745 3404.325 1343.237917 OG Counties 7837583
## 2164 2521.745 3404.325 1504.388054 OG Counties 7837583
## 2165 2521.745 3404.325 1567.966602 OG Counties 7837583
## 2166 2521.745 3404.325 1545.688622 OG Counties 7837583
## 2167 2521.745 3404.325 3701.409788 OG Counties 7837583
## 2168 2521.745 3404.325 1632.888095 OG Counties 7837583
## 2169 2521.745 3404.325 2732.341885 OG Counties 7837583
## 2170 2521.745 3404.325 698.190436 OG Counties 7837583
## 2171 2521.745 3404.325 2104.355168 OG Counties 7837583
## 2172 2521.745 3404.325 1359.841413 OG Counties 7837583
## 2173 2521.745 3404.325 1571.190628 OG Counties 7837583
## 2174 2521.745 3404.325 1481.481915 OG Counties 7837583
## 2175 2521.745 3404.325 1091.693957 OG Counties 7837583
## 2176 2521.745 3404.325 1514.777704 OG Counties 7837583
## 2177 2521.745 3404.325 1053.586141 OG Counties 7837583
## 2178 2521.745 3404.325 1491.556635 OG Counties 7837583
## 2179 2521.745 3404.325 903.149952 OG Counties 7837583
## 2180 2521.745 3404.325 34865.710934 OG Counties 7837583
## 2181 2521.745 3404.325 1792.500799 OG Counties 7837583
## 2182 2521.745 3404.325 2275.641126 OG Counties 7837583
## 2183 2521.745 3404.325 1560.750085 OG Counties 7837583
## 2184 2521.745 3404.325 1040.666956 OG Counties 7837583
## 2185 2521.745 3404.325 4010.314994 OG Counties 7837583
## 2186 2521.745 3404.325 941.136963 OG Counties 7837583
## 2187 2521.745 3404.325 4390.316763 OG Counties 7837583
## 2188 2521.745 3404.325 1308.996535 OG Counties 7837583
## 2189 2521.745 3404.325 1853.652794 OG Counties 7837583
## 2190 2521.745 3404.325 5604.988488 OG Counties 7837583
## 2191 2521.745 3404.325 1019.948467 OG Counties 7837583
## 2192 2521.745 3404.325 1135.305356 OG Counties 7837583
## 2193 2521.745 3404.325 745.401689 OG Counties 7837583
## 2194 2521.745 3404.325 14330.573449 OG Counties 7837583
## 2195 2521.745 3404.325 2280.495801 OG Counties 7837583
## 2196 2521.745 3404.325 1490.003706 OG Counties 7837583
## 2197 2521.745 3404.325 2622.481492 OG Counties 7837583
## 2198 2521.745 3404.325 1366.580968 OG Counties 7837583
## 2199 2521.745 3404.325 8426.652871 OG Counties 7837583
## 2200 2521.745 3404.325 1063.692884 OG Counties 7837583
## 2201 2521.745 3404.325 1994.077267 OG Counties 7837583
## 2202 2521.745 3404.325 1756.699530 OG Counties 7837583
## 2203 2521.745 3404.325 1343.719372 OG Counties 7837583
## 2204 2521.745 3404.325 2922.833104 OG Counties 7837583
## 2205 2521.745 3404.325 850.032397 OG Counties 7837583
## 2206 2521.745 3404.325 947.273210 OG Counties 7837583
## 2207 2521.745 3404.325 1158.174525 OG Counties 7837583
## 2208 2521.745 3404.325 20561.945203 OG Counties 7837583
## 2209 2521.745 3404.325 10790.398208 OG Counties 7837583
## 2210 2521.745 3404.325 4315.287807 OG Counties 7837583
## 2211 2521.745 3404.325 5506.627480 OG Counties 7837583
## 2212 2521.745 3404.325 1091.267234 OG Counties 7837583
## 2213 2521.745 3404.325 1567.997274 OG Counties 7837583
## 2214 2521.745 3404.325 725.624344 OG Counties 7837583
## 2215 2521.745 3404.325 2689.597816 OG Counties 7837583
## 2216 2521.745 3404.325 2452.546604 OG Counties 7837583
## 2217 2521.745 3404.325 2118.647096 OG Counties 7837583
## 2218 2521.745 3404.325 1271.875599 OG Counties 7837583
## 2219 2521.745 3404.325 639.876274 OG Counties 7837583
## 2220 2521.745 3404.325 215.901265 OG Counties 7837583
## 2221 2521.745 3404.325 7337.227150 OG Counties 7837583
## 2222 2521.745 3404.325 817.239072 OG Counties 7837583
## 2223 2521.745 3404.325 1058.313033 OG Counties 7837583
## 2224 2521.745 3404.325 12.922473 OG Counties 7837583
## 2225 2521.745 3404.325 4910.082307 OG Counties 7837583
## 2226 2521.745 3404.325 7376.916735 OG Counties 7837583
## 2227 2521.745 3404.325 4509.998132 OG Counties 7837583
## 2228 2521.745 3404.325 647.390349 OG Counties 7837583
## 2229 2521.745 3404.325 1038.653557 OG Counties 7837583
## 2230 2521.745 3404.325 3252.102252 OG Counties 7837583
## 2231 2521.745 3404.325 2256.857261 OG Counties 7837583
## 2232 2521.745 3404.325 1606.413730 OG Counties 7837583
## 2233 2521.745 3404.325 22.908493 OG Counties 7837583
## 2234 2521.745 3404.325 1679.966438 OG Counties 7837583
## 2235 2521.745 3404.325 1538.774259 OG Counties 7837583
## 2236 2521.745 3404.325 915.662739 OG Counties 7837583
## 2237 2521.745 3404.325 968.291437 OG Counties 7837583
## 2238 2521.745 3404.325 935.286369 OG Counties 7837583
## 2239 2521.745 3404.325 1226.058881 OG Counties 7837583
## 2240 2521.745 3404.325 883.074354 OG Counties 7837583
## 2241 2521.745 3404.325 1529.329188 OG Counties 7837583
## 2242 2521.745 3404.325 1300.758510 OG Counties 7837583
## 2243 2521.745 3404.325 9038.096868 OG Counties 7837583
## 2244 2521.745 3404.325 720.769231 OG Counties 7837583
## 2245 2521.745 3404.325 2408.679666 OG Counties 7837583
## 2246 2521.745 3404.325 2651.634909 OG Counties 7837583
## 2247 2521.745 3404.325 705.416360 OG Counties 7837583
## 2248 2521.745 3404.325 5524.525353 OG Counties 7837583
## 2249 2521.745 3404.325 3396.647911 OG Counties 7837583
## 2250 2521.745 3404.325 1441.095297 OG Counties 7837583
## 2251 2521.745 3404.325 3164.379479 OG Counties 7837583
## 2252 2521.745 3404.325 2008.341052 OG Counties 7837583
## 2253 2521.745 3404.325 1583.268774 OG Counties 7837583
## 2254 2521.745 3404.325 1829.038697 OG Counties 7837583
## 2255 2521.745 3404.325 1276.099545 OG Counties 7837583
## 2256 2521.745 3404.325 2335.725349 OG Counties 7837583
## 2257 2521.745 3404.325 3891.406819 OG Counties 7837583
## 2258 2521.745 3404.325 894.560990 OG Counties 7837583
## 2259 2521.745 3404.325 1159.409166 OG Counties 7837583
## 2260 2521.745 3404.325 1089.019750 OG Counties 7837583
## 2261 2521.745 3404.325 1402.306002 OG Counties 7837583
## 2262 2521.745 3404.325 1517.497255 OG Counties 7837583
## 2263 2521.745 3404.325 2376.788007 OG Counties 7837583
## 2264 2521.745 3404.325 3724.082289 OG Counties 7837583
## 2265 2521.745 3404.325 1558.513202 OG Counties 7837583
## 2266 2521.745 3404.325 667.379450 OG Counties 7837583
## 2267 2521.745 3404.325 1189.894479 OG Counties 7837583
## 2268 2521.745 3404.325 1968.212956 OG Counties 7837583
## 2269 2521.745 3404.325 2351.163612 OG Counties 7837583
## 2270 2521.745 3404.325 755.986109 OG Counties 7837583
## 2271 2521.745 3404.325 232.120717 OG Counties 7837583
## 2272 2521.745 3404.325 1495.649080 OG Counties 7837583
## 2273 2521.745 3404.325 1340.097817 OG Counties 7837583
## 2274 2521.745 3404.325 2717.309019 OG Counties 7837583
## 2275 2521.745 3404.325 1991.929947 OG Counties 7837583
## 2276 2521.745 3404.325 426.860858 OG Counties 7837583
## 2277 2521.745 3404.325 1506.777653 OG Counties 7837583
## 2278 2521.745 3404.325 2007.135276 OG Counties 7837583
## 2279 2521.745 3404.325 1480.343981 OG Counties 7837583
## 2280 2521.745 3404.325 7247.450622 OG Counties 7837583
## 2281 2521.745 3404.325 1462.708612 OG Counties 7837583
## 2282 2521.745 3404.325 1400.311163 OG Counties 7837583
## 2283 2521.745 3404.325 2998.033215 OG Counties 7837583
## 2284 2521.745 3404.325 1811.309905 OG Counties 7837583
## 2285 2521.745 3404.325 2604.665528 OG Counties 7837583
## 2286 2521.745 3404.325 1746.089625 OG Counties 7837583
## 2287 2521.745 3404.325 6352.293299 OG Counties 7837583
## 2288 2521.745 3404.325 1114.778778 OG Counties 7837583
## 2289 2521.745 3404.325 1022.547948 OG Counties 7837583
## 2290 2521.745 3404.325 524.155007 OG Counties 7837583
## 2291 2521.745 3404.325 1482.426955 OG Counties 7837583
## 2292 2521.745 3404.325 2356.219856 OG Counties 7837583
## 2293 2521.745 3404.325 1661.153891 OG Counties 7837583
## 2294 2521.745 3404.325 537.919132 OG Counties 7837583
## 2295 2521.745 3404.325 52077.178901 OG Counties 7837583
## 2296 2521.745 3404.325 24019.962248 OG Counties 7837583
## 2297 2521.745 3404.325 11425.453956 OG Counties 7837583
## 2298 2521.745 3404.325 2345.501446 OG Counties 7837583
## 2299 2521.745 3404.325 925.257654 OG Counties 7837583
## 2300 2521.745 3404.325 2205.549993 OG Counties 7837583
## 2301 2521.745 3404.325 1691.955685 OG Counties 7837583
## 2302 2521.745 3404.325 2071.178109 OG Counties 7837583
## 2303 2521.745 3404.325 3967.456031 OG Counties 7837583
## 2304 2521.745 3404.325 2319.278481 OG Counties 7837583
## 2305 2521.745 3404.325 1248.310004 OG Counties 7837583
## 2306 2521.745 3404.325 26532.361918 OG Counties 7837583
## 2307 2521.745 3404.325 2859.317628 OG Counties 7837583
## 2308 2521.745 3404.325 620.868588 OG Counties 7837583
## 2309 2521.745 3404.325 22992.423981 OG Counties 7837583
## 2310 2521.745 3404.325 1284.772564 OG Counties 7837583
## 2311 2521.745 3404.325 9761.431473 OG Counties 7837583
## 2312 2521.745 3404.325 9731.108179 OG Counties 7837583
## 2313 2521.745 3404.325 1788.110172 OG Counties 7837583
## 2314 2521.745 3404.325 13739.192048 OG Counties 7837583
## 2315 2521.745 3404.325 2342.603865 OG Counties 7837583
## 2316 2521.745 3404.325 9289.821488 OG Counties 7837583
## 2317 2521.745 3404.325 1309.688438 OG Counties 7837583
## 2318 2521.745 3404.325 4487.666538 OG Counties 7837583
## 2319 2521.745 3404.325 1900.499444 OG Counties 7837583
## 2320 2521.745 3404.325 7224.749426 OG Counties 7837583
## 2321 2521.745 3404.325 848.469714 OG Counties 7837583
## 2322 2521.745 3404.325 17247.703772 OG Counties 7837583
## 2323 2521.745 3404.325 2416.526284 OG Counties 7837583
## 2324 2521.745 3404.325 2782.841166 OG Counties 7837583
## 2325 2521.745 3404.325 1974.618130 OG Counties 7837583
## 2326 2521.745 3404.325 2563.831623 OG Counties 7837583
## 2327 2521.745 3404.325 1683.672503 OG Counties 7837583
## 2328 2521.745 3404.325 1036.586431 OG Counties 7837583
## 2329 2521.745 3404.325 1603.653907 OG Counties 7837583
## 2330 2521.745 3404.325 4777.127730 OG Counties 7837583
## 2331 2521.745 3404.325 1515.381197 OG Counties 7837583
## 2332 2521.745 3404.325 4808.482281 OG Counties 7837583
## 2333 2521.745 3404.325 523.051361 OG Counties 7837583
## 2334 2521.745 3404.325 371.558105 OG Counties 7837583
## 2335 2521.745 3404.325 4086.166202 OG Counties 7837583
## 2336 2521.745 3404.325 2603.917084 OG Counties 7837583
## 2337 2521.745 3404.325 4325.933621 OG Counties 7837583
## 2338 2521.745 3404.325 1592.900347 OG Counties 7837583
## 2339 2521.745 3404.325 1682.150156 OG Counties 7837583
## 2340 2521.745 3404.325 4590.399189 OG Counties 7837583
## 2341 2521.745 3404.325 366.538451 OG Counties 7837583
## 2342 2521.745 3404.325 291.742212 OG Counties 7837583
## 2343 2521.745 3404.325 2153.841294 OG Counties 7837583
## 2344 2521.745 3404.325 1757.268566 OG Counties 7837583
## 2345 2521.745 3404.325 1869.227890 OG Counties 7837583
## 2346 2521.745 3404.325 758.207938 OG Counties 7837583
## 2347 2521.745 3404.325 570.765907 OG Counties 7837583
## 2348 2521.745 3404.325 3396.961340 OG Counties 7837583
## 2349 2521.745 3404.325 10883.528376 OG Counties 7837583
## 2350 2521.745 3404.325 1862.017097 OG Counties 7837583
## 2351 2521.745 3404.325 952.094196 OG Counties 7837583
## 2352 2521.745 3404.325 1078.749943 OG Counties 7837583
## 2353 2521.745 3404.325 3426.739843 OG Counties 7837583
## 2354 2521.745 3404.325 7895.976788 OG Counties 7837583
## 2355 2521.745 3404.325 663.145922 OG Counties 7837583
## 2356 2521.745 3404.325 2297.806560 OG Counties 7837583
## 2357 2521.745 3404.325 1683.365106 OG Counties 7837583
## 2358 2521.745 3404.325 692.123911 OG Counties 7837583
## 2359 2521.745 3404.325 3343.603956 OG Counties 7837583
## 2360 2521.745 3404.325 2487.464222 OG Counties 7837583
## 2361 2521.745 3404.325 1704.021810 OG Counties 7837583
## 2362 2521.745 3404.325 2251.041267 OG Counties 7837583
## 2363 2521.745 3404.325 694.860393 OG Counties 7837583
## 2364 2521.745 3404.325 1627.533883 OG Counties 7837583
## 2365 2521.745 3404.325 2058.891448 OG Counties 7837583
## 2366 2521.745 3404.325 1364.740481 OG Counties 7837583
## 2367 2521.745 3404.325 1264.121928 OG Counties 7837583
## 2368 2521.745 3404.325 1883.099581 OG Counties 7837583
## 2369 2521.745 3404.325 1921.437710 OG Counties 7837583
## 2370 2521.745 3404.325 6892.770209 OG Counties 7837583
## 2371 2521.745 3404.325 1158.675224 OG Counties 7837583
## 2372 2521.745 3404.325 6714.328974 OG Counties 7837583
## 2373 2521.745 3404.325 1606.302314 OG Counties 7837583
## 2374 2521.745 3404.325 1151.263530 OG Counties 7837583
## 2375 2521.745 3404.325 618.815254 OG Counties 7837583
## 2376 2521.745 3404.325 2615.954618 OG Counties 7837583
## 2377 2521.745 3404.325 2308.811453 OG Counties 7837583
## 2378 2521.745 3404.325 901.987515 OG Counties 7837583
## 2379 2521.745 3404.325 1032.771174 OG Counties 7837583
## 2380 2521.745 3404.325 2115.513748 OG Counties 7837583
## 2381 2521.745 3404.325 2338.222841 OG Counties 7837583
## 2382 2521.745 3404.325 1336.750475 OG Counties 7837583
## 2383 2521.745 3404.325 2972.406447 OG Counties 7837583
## 2384 2521.745 3404.325 1683.539170 OG Counties 7837583
## 2385 2521.745 3404.325 1447.825769 OG Counties 7837583
## 2386 2521.745 3404.325 1580.975470 OG Counties 7837583
## 2387 2521.745 3404.325 1069.541987 OG Counties 7837583
## 2388 2521.745 3404.325 703.804914 OG Counties 7837583
## 2389 2521.745 3404.325 1043.867914 OG Counties 7837583
## 2390 2521.745 3404.325 815.266143 OG Counties 7837583
## 2391 2521.745 3404.325 1480.560752 OG Counties 7837583
## 2392 2521.745 3404.325 1297.705825 OG Counties 7837583
## 2393 2521.745 3404.325 1028.656975 OG Counties 7837583
## 2394 2521.745 3404.325 6109.455558 OG Counties 7837583
## 2395 2521.745 3404.325 1073.100367 OG Counties 7837583
## 2396 2521.745 3404.325 11568.880130 OG Counties 7837583
## 2397 2521.745 3404.325 856.604776 OG Counties 7837583
## 2398 2521.745 3404.325 754.504553 OG Counties 7837583
## 2399 2521.745 3404.325 1913.766019 OG Counties 7837583
## 2400 2521.745 3404.325 1003.272083 OG Counties 7837583
## 2401 2521.745 3404.325 2371.856696 OG Counties 7837583
## 2402 2521.745 3404.325 2335.216673 OG Counties 7837583
## 2403 2521.745 3404.325 1632.034348 OG Counties 7837583
## 2404 2521.745 3404.325 1114.579140 OG Counties 7837583
## 2405 2521.745 3404.325 599.119844 OG Counties 7837583
## 2406 2521.745 3404.325 10609.565784 OG Counties 7837583
## 2407 2521.745 3404.325 1023.032198 OG Counties 7837583
## 2408 2521.745 3404.325 2988.518750 OG Counties 7837583
## 2409 2521.745 3404.325 2090.151156 OG Counties 7837583
## 2410 2521.745 3404.325 11159.231500 OG Counties 7837583
## 2411 2521.745 3404.325 15246.358739 OG Counties 7837583
## 2412 2521.745 3404.325 2073.344488 OG Counties 7837583
## 2413 2521.745 3404.325 9927.888050 OG Counties 7837583
## 2414 2521.745 3404.325 48334.731887 OG Counties 7837583
## 2415 2521.745 3404.325 1603.173189 OG Counties 7837583
## 2416 2521.745 3404.325 14287.282081 OG Counties 7837583
## 2417 2521.745 3404.325 787.436674 OG Counties 7837583
## 2418 2521.745 3404.325 1492.322851 OG Counties 7837583
## 2419 2521.745 3404.325 2159.221654 OG Counties 7837583
## 2420 2521.745 3404.325 1597.578955 OG Counties 7837583
## 2421 2521.745 3404.325 1869.829527 OG Counties 7837583
## 2422 2521.745 3404.325 2546.315894 OG Counties 7837583
## 2423 2521.745 3404.325 2520.709458 OG Counties 7837583
## 2424 2521.745 3404.325 2173.618171 OG Counties 7837583
## 2425 2521.745 3404.325 2086.704622 OG Counties 7837583
## 2426 2521.745 3404.325 1787.044274 OG Counties 7837583
## 2427 2521.745 3404.325 5787.380225 OG Counties 7837583
## 2428 2521.745 3404.325 2130.297254 OG Counties 7837583
## 2429 2521.745 3404.325 809.049902 OG Counties 7837583
## 2430 2521.745 3404.325 3682.595862 OG Counties 7837583
## 2431 2521.745 3404.325 2964.239383 OG Counties 7837583
## 2432 2521.745 3404.325 2062.043975 OG Counties 7837583
## 2433 2521.745 3404.325 914.449109 OG Counties 7837583
## 2434 2521.745 3404.325 889.415640 OG Counties 7837583
## 2435 2521.745 3404.325 1668.025180 OG Counties 7837583
## 2436 2521.745 3404.325 4411.756328 OG Counties 7837583
## 2437 2521.745 3404.325 1080.393540 OG Counties 7837583
## 2438 2521.745 3404.325 1751.640333 OG Counties 7837583
## 2439 2521.745 3404.325 2935.964793 OG Counties 7837583
## 2440 2521.745 3404.325 1260.186162 OG Counties 7837583
## 2441 2521.745 3404.325 2478.985629 OG Counties 7837583
## 2442 2521.745 3404.325 1094.732969 OG Counties 7837583
## 2443 2521.745 3404.325 2451.495027 OG Counties 7837583
## 2444 2521.745 3404.325 1150.419492 OG Counties 7837583
## 2445 2521.745 3404.325 1319.903977 OG Counties 7837583
## 2446 2521.745 3404.325 2591.109225 OG Counties 7837583
## 2447 2521.745 3404.325 2230.704774 OG Counties 7837583
## 2448 2521.745 3404.325 1302.931036 OG Counties 7837583
## 2449 2521.745 3404.325 3344.552841 OG Counties 7837583
## 2450 2521.745 3404.325 2111.081958 OG Counties 7837583
## 2451 2521.745 3404.325 538.284007 OG Counties 7837583
## 2452 2521.745 3404.325 1923.234599 OG Counties 7837583
## 2453 2521.745 3404.325 3942.105971 OG Counties 7837583
## 2454 2521.745 3404.325 1346.054007 OG Counties 7837583
## 2455 2521.745 3404.325 1433.879169 OG Counties 7837583
## 2456 2521.745 3404.325 2089.406432 OG Counties 7837583
## 2457 2521.745 3404.325 1648.034716 OG Counties 7837583
## 2458 2521.745 3404.325 923.244823 OG Counties 7837583
## 2459 2521.745 3404.325 1200.911355 OG Counties 7837583
## 2460 2521.745 3404.325 365.571850 OG Counties 7837583
## 2461 2521.745 3404.325 1472.630657 OG Counties 7837583
## 2462 2521.745 3404.325 1460.494812 OG Counties 7837583
## 2463 2521.745 3404.325 1762.393195 OG Counties 7837583
## 2464 2521.745 3404.325 1721.392267 OG Counties 7837583
## 2465 2521.745 3404.325 495.326352 OG Counties 7837583
## 2466 2521.745 3404.325 1536.180939 OG Counties 7837583
## 2467 2521.745 3404.325 1050.637985 OG Counties 7837583
## 2468 2521.745 3404.325 412.522616 OG Counties 7837583
## 2469 2521.745 3404.325 751.469905 OG Counties 7837583
## 2470 2521.745 3404.325 1304.909417 OG Counties 7837583
## 2471 2521.745 3404.325 5805.325447 OG Counties 7837583
## 2472 2521.745 3404.325 1641.900372 OG Counties 7837583
## 2473 2521.745 3404.325 2881.483371 OG Counties 7837583
## 2474 2521.745 3404.325 1818.213671 OG Counties 7837583
## 2475 2521.745 3404.325 2882.697818 OG Counties 7837583
## 2476 2521.745 3404.325 1426.966299 OG Counties 7837583
## 2477 2521.745 3404.325 1213.125163 OG Counties 7837583
## 2478 2521.745 3404.325 2335.902879 OG Counties 7837583
## 2479 2521.745 3404.325 832.227680 OG Counties 7837583
## 2480 2521.745 3404.325 6680.739233 OG Counties 7837583
## 2481 2521.745 3404.325 1610.037619 OG Counties 7837583
## 2482 2521.745 3404.325 1140.079254 OG Counties 7837583
## 2483 2521.745 3404.325 927.335917 OG Counties 7837583
## 2484 2521.745 3404.325 3966.492474 OG Counties 7837583
## 2485 2521.745 3404.325 431.567919 OG Counties 7837583
## 2486 2521.745 3404.325 1210.332299 OG Counties 7837583
## 2487 2521.745 3404.325 920.625401 OG Counties 7837583
## 2488 2521.745 3404.325 4607.495969 OG Counties 7837583
## 2489 2521.745 3404.325 4758.487691 OG Counties 7837583
## 2490 2521.745 3404.325 1294.348238 OG Counties 7837583
## 2491 2521.745 3404.325 1632.044417 OG Counties 7837583
## 2492 2521.745 3404.325 2751.789357 OG Counties 7837583
## 2493 2521.745 3404.325 1459.542252 OG Counties 7837583
## 2494 2521.745 3404.325 4601.260217 OG Counties 7837583
## 2495 2521.745 3404.325 1777.570845 OG Counties 7837583
## 2496 2521.745 3404.325 5997.202522 OG Counties 7837583
## 2497 2521.745 3404.325 428.538661 OG Counties 7837583
## 2498 2521.745 3404.325 2541.457641 OG Counties 7837583
## 2499 2521.745 3404.325 1067.243936 OG Counties 7837583
## 2500 2521.745 3404.325 3004.742525 OG Counties 7837583
## 2501 2521.745 3404.325 1348.169107 OG Counties 7837583
## 2502 2521.745 3404.325 17.627061 OG Counties 7837583
## 2503 2521.745 3404.325 2698.557672 OG Counties 7837583
## 2504 2521.745 3404.325 5.616893 OG Counties 7837583
## 2505 2521.745 3404.325 2366.044452 OG Counties 7837583
## 2506 2521.745 3404.325 1819.521685 OG Counties 7837583
## 2507 2521.745 3404.325 2980.065544 OG Counties 7837583
## 2508 2521.745 3404.325 1320.192708 OG Counties 7837583
## 2509 2521.745 3404.325 2280.115709 OG Counties 7837583
## 2510 2521.745 3404.325 3510.847284 OG Counties 7837583
## 2511 2521.745 3404.325 3579.541097 OG Counties 7837583
## 2512 2521.745 3404.325 1273.533821 OG Counties 7837583
## 2513 2521.745 3404.325 1802.604219 OG Counties 7837583
## 2514 2521.745 3404.325 1602.447054 OG Counties 7837583
## 2515 2521.745 3404.325 1539.392488 OG Counties 7837583
## 2516 2521.745 3404.325 2805.708794 OG Counties 7837583
## 2517 2521.745 3404.325 2508.965955 OG Counties 7837583
## 2518 2521.745 3404.325 1232.450407 OG Counties 7837583
## 2519 2521.745 3404.325 540.246459 OG Counties 7837583
## 2520 2521.745 3404.325 1909.672048 OG Counties 7837583
## 2521 2521.745 3404.325 1710.116423 OG Counties 7837583
## 2522 2521.745 3404.325 2059.698512 OG Counties 7837583
## 2523 2521.745 3404.325 2194.612605 OG Counties 7837583
## 2524 2521.745 3404.325 1488.654977 OG Counties 7837583
## 2525 2521.745 3404.325 2832.888675 OG Counties 7837583
## 2526 2521.745 3404.325 1142.433381 OG Counties 7837583
## 2527 2521.745 3404.325 4947.775105 OG Counties 7837583
## 2528 2521.745 3404.325 2142.112306 OG Counties 7837583
## 2529 2521.745 3404.325 865.837701 OG Counties 7837583
## 2530 2521.745 3404.325 1092.999283 OG Counties 7837583
## 2531 2521.745 3404.325 1068.178323 OG Counties 7837583
## 2532 2521.745 3404.325 1274.439604 OG Counties 7837583
## 2533 2521.745 3404.325 498.680393 OG Counties 7837583
## 2534 2521.745 3404.325 1865.684492 OG Counties 7837583
## 2535 2521.745 3404.325 1286.257178 OG Counties 7837583
## 2536 2521.745 3404.325 1014.733858 OG Counties 7837583
## 2537 2521.745 3404.325 1752.189401 OG Counties 7837583
## 2538 2521.745 3404.325 1495.903360 OG Counties 7837583
## 2539 2521.745 3404.325 1502.666488 OG Counties 7837583
## 2540 2521.745 3404.325 863.456217 OG Counties 7837583
## 2541 2521.745 3404.325 729.316870 OG Counties 7837583
## 2542 2521.745 3404.325 1216.198540 OG Counties 7837583
## 2543 2521.745 3404.325 2117.234070 OG Counties 7837583
## 2544 2521.745 3404.325 20708.999391 OG Counties 7837583
## 2545 2521.745 3404.325 7663.138390 OG Counties 7837583
## 2546 2521.745 3404.325 1411.009805 OG Counties 7837583
## 2547 2521.745 3404.325 710.722531 OG Counties 7837583
## 2548 2521.745 3404.325 1878.888777 OG Counties 7837583
## 2549 2521.745 3404.325 1882.511959 OG Counties 7837583
## 2550 2521.745 3404.325 2214.534926 OG Counties 7837583
## 2551 2521.745 3404.325 234.685212 OG Counties 7837583
## 2552 2521.745 3404.325 4195.428772 OG Counties 7837583
## 2553 2521.745 3404.325 5444.704351 OG Counties 7837583
## 2554 2521.745 3404.325 2033.072167 OG Counties 7837583
## 2555 2521.745 3404.325 1740.170948 OG Counties 7837583
## 2556 2521.745 3404.325 1767.125051 OG Counties 7837583
## 2557 2521.745 3404.325 25.938611 OG Counties 7837583
## 2558 2521.745 3404.325 1722.776868 OG Counties 7837583
## 2559 2521.745 3404.325 1057.529015 OG Counties 7837583
## 2560 2521.745 3404.325 2090.539769 OG Counties 7837583
## 2561 2521.745 3404.325 2449.470941 OG Counties 7837583
## 2562 2521.745 3404.325 2011.582085 OG Counties 7837583
## 2563 2521.745 3404.325 1760.402588 OG Counties 7837583
## 2564 2521.745 3404.325 5688.891128 OG Counties 7837583
## 2565 2521.745 3404.325 3908.230492 OG Counties 7837583
## 2566 2521.745 3404.325 6109.150531 OG Counties 7837583
## 2567 2521.745 3404.325 16497.524359 OG Counties 7837583
## 2568 2521.745 3404.325 1450.032884 OG Counties 7837583
## 2569 2521.745 3404.325 1775.178395 OG Counties 7837583
## 2570 2521.745 3404.325 1240.818258 OG Counties 7837583
## 2571 2521.745 3404.325 2652.480745 OG Counties 7837583
## 2572 2521.745 3404.325 2983.147695 OG Counties 7837583
## 2573 2521.745 3404.325 25758.357928 OG Counties 7837583
## 2574 2521.745 3404.325 1928.349905 OG Counties 7837583
## 2575 2521.745 3404.325 6281.289984 OG Counties 7837583
## 2576 2521.745 3404.325 2210.420919 OG Counties 7837583
## 2577 2521.745 3404.325 1762.259433 OG Counties 7837583
## 2578 2521.745 3404.325 2611.857208 OG Counties 7837583
## 2579 2521.745 3404.325 1653.271547 OG Counties 7837583
## 2580 2521.745 3404.325 2304.793438 OG Counties 7837583
## 2581 2521.745 3404.325 1657.395685 OG Counties 7837583
## 2582 2521.745 3404.325 828.327149 OG Counties 7837583
## 2583 2521.745 3404.325 3593.379760 OG Counties 7837583
## 2584 2521.745 3404.325 2048.930544 OG Counties 7837583
## 2585 2521.745 3404.325 768.839556 OG Counties 7837583
## 2586 2521.745 3404.325 5514.310703 OG Counties 7837583
## 2587 2521.745 3404.325 1294.450101 OG Counties 7837583
## 2588 2521.745 3404.325 870.544313 OG Counties 7837583
## 2589 2521.745 3404.325 407.665038 OG Counties 7837583
## 2590 2521.745 3404.325 3699.027816 OG Counties 7837583
## 2591 2521.745 3404.325 3120.979400 OG Counties 7837583
## 2592 2521.745 3404.325 6224.886324 OG Counties 7837583
## 2593 2521.745 3404.325 1538.902543 OG Counties 7837583
## 2594 2521.745 3404.325 1479.564104 OG Counties 7837583
## 2595 2521.745 3404.325 1484.463552 OG Counties 7837583
## 2596 2521.745 3404.325 2306.569441 OG Counties 7837583
## 2597 2521.745 3404.325 1395.912806 OG Counties 7837583
## 2598 2521.745 3404.325 2248.941953 OG Counties 7837583
## 2599 2521.745 3404.325 1071.252572 OG Counties 7837583
## 2600 2521.745 3404.325 1425.549939 OG Counties 7837583
## 2601 2521.745 3404.325 2257.135123 OG Counties 7837583
## 2602 2521.745 3404.325 1902.041005 OG Counties 7837583
## 2603 2521.745 3404.325 1965.776685 OG Counties 7837583
## 2604 2521.745 3404.325 1517.429459 OG Counties 7837583
## 2605 2521.745 3404.325 2072.995099 OG Counties 7837583
## 2606 2521.745 3404.325 2954.771269 OG Counties 7837583
## 2607 2521.745 3404.325 1511.620448 OG Counties 7837583
## 2608 2521.745 3404.325 2054.629280 OG Counties 7837583
## 2609 2521.745 3404.325 2164.986756 OG Counties 7837583
## 2610 2521.745 3404.325 1041.810141 OG Counties 7837583
## 2611 2521.745 3404.325 1171.991571 OG Counties 7837583
## 2612 2521.745 3404.325 669.660093 OG Counties 7837583
## 2613 2521.745 3404.325 507.819463 OG Counties 7837583
## 2614 2521.745 3404.325 624.358070 OG Counties 7837583
## 2615 2521.745 3404.325 1107.149099 OG Counties 7837583
## 2616 2521.745 3404.325 428.943488 OG Counties 7837583
## 2617 2521.745 3404.325 1586.453948 OG Counties 7837583
## 2618 2521.745 3404.325 2974.764085 OG Counties 7837583
## 2619 2521.745 3404.325 1493.969213 OG Counties 7837583
## 2620 2521.745 3404.325 875.510251 OG Counties 7837583
## 2621 2521.745 3404.325 1936.709222 OG Counties 7837583
## 2622 2521.745 3404.325 743.621488 OG Counties 7837583
## 2623 2521.745 3404.325 1559.954862 OG Counties 7837583
## 2624 2521.745 3404.325 21.890440 OG Counties 7837583
## 2625 2521.745 3404.325 5787.996612 OG Counties 7837583
## 2626 2521.745 3404.325 2229.450877 OG Counties 7837583
## 2627 2521.745 3404.325 2199.020610 OG Counties 7837583
## 2628 2521.745 3404.325 1618.509600 OG Counties 7837583
## 2629 2521.745 3404.325 1315.181938 OG Counties 7837583
## 2630 2521.745 3404.325 2013.685633 OG Counties 7837583
## 2631 2521.745 3404.325 743.352239 OG Counties 7837583
## 2632 2521.745 3404.325 1713.556935 OG Counties 7837583
## 2633 2521.745 3404.325 23794.734896 OG Counties 7837583
## 2634 2521.745 3404.325 21042.727413 OG Counties 7837583
## 2635 2521.745 3404.325 6873.301996 OG Counties 7837583
## 2636 2521.745 3404.325 11768.812790 OG Counties 7837583
## 2637 2521.745 3404.325 1877.010207 OG Counties 7837583
## 2638 2521.745 3404.325 1585.597278 OG Counties 7837583
## 2639 2521.745 3404.325 1097.379677 OG Counties 7837583
## 2640 2521.745 3404.325 527.438190 OG Counties 7837583
## 2641 2521.745 3404.325 2333.685694 OG Counties 7837583
## 2642 2521.745 3404.325 563.540389 OG Counties 7837583
## 2643 2521.745 3404.325 1121.872800 OG Counties 7837583
## 2644 2521.745 3404.325 4941.831212 OG Counties 7837583
## 2645 2521.745 3404.325 2385.026938 OG Counties 7837583
## 2646 2521.745 3404.325 1988.252365 OG Counties 7837583
## 2647 2521.745 3404.325 5848.578708 OG Counties 7837583
## 2648 2521.745 3404.325 11703.057773 OG Counties 7837583
## 2649 2521.745 3404.325 3758.924636 OG Counties 7837583
## 2650 2521.745 3404.325 1155.316166 OG Counties 7837583
## 2651 2521.745 3404.325 7096.177671 OG Counties 7837583
## 2652 2521.745 3404.325 992.856862 OG Counties 7837583
## 2653 2521.745 3404.325 1598.713050 OG Counties 7837583
## 2654 2521.745 3404.325 8056.634938 OG Counties 7837583
## 2655 2521.745 3404.325 1555.007394 OG Counties 7837583
## 2656 2521.745 3404.325 969.186656 OG Counties 7837583
## 2657 2521.745 3404.325 5977.378323 OG Counties 7837583
## 2658 2521.745 3404.325 4984.294659 OG Counties 7837583
## 2659 2521.745 3404.325 2266.180809 OG Counties 7837583
## 2660 2521.745 3404.325 3647.774624 OG Counties 7837583
## 2661 2521.745 3404.325 914.996494 OG Counties 7837583
## 2662 2521.745 3404.325 1158.722942 OG Counties 7837583
## 2663 2521.745 3404.325 773.907659 OG Counties 7837583
## 2664 2521.745 3404.325 1979.618210 OG Counties 7837583
## 2665 2521.745 3404.325 4250.273567 OG Counties 7837583
## 2666 2521.745 3404.325 1593.860012 OG Counties 7837583
## 2667 2521.745 3404.325 1066.812760 OG Counties 7837583
## 2668 2521.745 3404.325 5932.274605 OG Counties 7837583
## 2669 2521.745 3404.325 2430.982918 OG Counties 7837583
## 2670 2521.745 3404.325 2120.499026 OG Counties 7837583
## 2671 2521.745 3404.325 1688.111191 OG Counties 7837583
## 2672 2521.745 3404.325 2255.199758 OG Counties 7837583
## 2673 2521.745 3404.325 1053.882727 OG Counties 7837583
## 2674 2521.745 3404.325 996.686894 OG Counties 7837583
## 2675 2521.745 3404.325 1793.515367 OG Counties 7837583
## 2676 2521.745 3404.325 2245.689127 OG Counties 7837583
## 2677 2521.745 3404.325 416.895673 OG Counties 7837583
## 2678 2521.745 3404.325 4151.698304 OG Counties 7837583
## 2679 2521.745 3404.325 3103.914210 OG Counties 7837583
## 2680 2521.745 3404.325 1420.778363 OG Counties 7837583
## 2681 2521.745 3404.325 1492.382455 OG Counties 7837583
## 2682 2521.745 3404.325 619.763809 OG Counties 7837583
## 2683 2521.745 3404.325 680.138286 OG Counties 7837583
## 2684 2521.745 3404.325 2156.620776 OG Counties 7837583
## 2685 2521.745 3404.325 1659.654382 OG Counties 7837583
## 2686 2521.745 3404.325 1714.723138 OG Counties 7837583
## 2687 2521.745 3404.325 1241.247526 OG Counties 7837583
## 2688 2521.745 3404.325 1386.762032 OG Counties 7837583
## 2689 2521.745 3404.325 1461.469336 OG Counties 7837583
## 2690 2521.745 3404.325 1357.247711 OG Counties 7837583
## 2691 2521.745 3404.325 2320.564033 OG Counties 7837583
## 2692 2521.745 3404.325 1059.980873 OG Counties 7837583
## 2693 2521.745 3404.325 1669.693457 OG Counties 7837583
## 2694 2521.745 3404.325 2243.083032 OG Counties 7837583
## 2695 2521.745 3404.325 1499.091224 OG Counties 7837583
## 2696 2521.745 3404.325 1738.472714 OG Counties 7837583
## 2697 2521.745 3404.325 1070.314504 OG Counties 7837583
## 2698 2521.745 3404.325 7702.631617 OG Counties 7837583
## 2699 2521.745 3404.325 2077.953729 OG Counties 7837583
## 2700 2521.745 3404.325 10932.886823 OG Counties 7837583
## 2701 2521.745 3404.325 2461.749500 OG Counties 7837583
## 2702 2521.745 3404.325 3679.150524 OG Counties 7837583
## 2703 2521.745 3404.325 1881.329017 OG Counties 7837583
## 2704 2521.745 3404.325 1404.871448 OG Counties 7837583
## 2705 2521.745 3404.325 1780.859264 OG Counties 7837583
## 2706 2521.745 3404.325 12032.645586 OG Counties 7837583
## 2707 2521.745 3404.325 1019.231062 OG Counties 7837583
## 2708 2521.745 3404.325 3125.182664 OG Counties 7837583
## 2709 2521.745 3404.325 3916.742920 OG Counties 7837583
## 2710 2521.745 3404.325 6359.932424 OG Counties 7837583
## 2711 2521.745 3404.325 45.732455 OG Counties 7837583
## 2712 2521.745 3404.325 1726.498712 OG Counties 7837583
## 2713 2521.745 3404.325 549.723999 OG Counties 7837583
## 2714 2521.745 3404.325 2044.364561 OG Counties 7837583
## 2715 2521.745 3404.325 4246.421585 OG Counties 7837583
## 2716 2521.745 3404.325 2148.874280 OG Counties 7837583
## 2717 2521.745 3404.325 1674.072707 OG Counties 7837583
## 2718 2521.745 3404.325 1058.180231 OG Counties 7837583
## 2719 2521.745 3404.325 1039.602100 OG Counties 7837583
## 2720 2521.745 3404.325 799.588385 OG Counties 7837583
## 2721 2521.745 3404.325 2775.152585 OG Counties 7837583
## 2722 2521.745 3404.325 1804.609991 OG Counties 7837583
## 2723 2521.745 3404.325 4377.276658 OG Counties 7837583
## 2724 2521.745 3404.325 2164.142996 OG Counties 7837583
## 2725 2521.745 3404.325 1578.761257 OG Counties 7837583
## 2726 2521.745 3404.325 3344.471650 OG Counties 7837583
## 2727 2521.745 3404.325 579.350013 OG Counties 7837583
## 2728 2521.745 3404.325 12353.636569 OG Counties 7837583
## 2729 2521.745 3404.325 1326.340906 OG Counties 7837583
## 2730 2521.745 3404.325 2056.556720 OG Counties 7837583
## 2731 2521.745 3404.325 7638.315265 OG Counties 7837583
## 2732 2521.745 3404.325 1012.349798 OG Counties 7837583
## 2733 2521.745 3404.325 6818.690320 OG Counties 7837583
## 2734 2521.745 3404.325 5192.486248 OG Counties 7837583
## 2735 2521.745 3404.325 1696.024811 OG Counties 7837583
## 2736 2521.745 3404.325 2305.609153 OG Counties 7837583
## 2737 2521.745 3404.325 2544.412957 OG Counties 7837583
## 2738 2521.745 3404.325 661.493307 OG Counties 7837583
## 2739 2521.745 3404.325 1121.118549 OG Counties 7837583
## 2740 2521.745 3404.325 2113.270460 OG Counties 7837583
## 2741 2521.745 3404.325 4635.353331 OG Counties 7837583
## 2742 2521.745 3404.325 8695.783555 OG Counties 7837583
## 2743 2521.745 3404.325 1465.157142 OG Counties 7837583
## 2744 2521.745 3404.325 17583.271658 OG Counties 7837583
## 2745 2521.745 3404.325 1894.387946 OG Counties 7837583
## 2746 2521.745 3404.325 4913.444506 OG Counties 7837583
## 2747 2521.745 3404.325 2616.281983 OG Counties 7837583
## 2748 2521.745 3404.325 6755.954846 OG Counties 7837583
## 2749 2521.745 3404.325 2531.090857 OG Counties 7837583
## 2750 2521.745 3404.325 6042.817577 OG Counties 7837583
## 2751 2521.745 3404.325 4387.101598 OG Counties 7837583
## 2752 2521.745 3404.325 853.278645 OG Counties 7837583
## 2753 2521.745 3404.325 3825.973369 OG Counties 7837583
## 2754 2521.745 3404.325 1047.066280 OG Counties 7837583
## 2755 2521.745 3404.325 1958.183294 OG Counties 7837583
## 2756 2521.745 3404.325 1320.092772 OG Counties 7837583
## 2757 2521.745 3404.325 1643.974021 OG Counties 7837583
## 2758 2521.745 3404.325 2464.872851 OG Counties 7837583
## 2759 2521.745 3404.325 2468.810137 OG Counties 7837583
## 2760 2521.745 3404.325 2068.827207 OG Counties 7837583
## 2761 2521.745 3404.325 2694.905000 OG Counties 7837583
## 2762 2521.745 3404.325 1093.164421 OG Counties 7837583
## 2763 2521.745 3404.325 1190.995100 OG Counties 7837583
## 2764 2521.745 3404.325 988.356859 OG Counties 7837583
## 2765 2521.745 3404.325 2372.385973 OG Counties 7837583
## 2766 2521.745 3404.325 3198.878240 OG Counties 7837583
## 2767 2521.745 3404.325 1200.154982 OG Counties 7837583
## 2768 2521.745 3404.325 2336.898468 OG Counties 7837583
## 2769 2521.745 3404.325 1967.696118 OG Counties 7837583
## 2770 2521.745 3404.325 9238.988720 OG Counties 7837583
## 2771 2521.745 3404.325 7829.727737 OG Counties 7837583
## 2772 2521.745 3404.325 1013.061064 OG Counties 7837583
## 2773 2521.745 3404.325 1684.177079 OG Counties 7837583
## 2774 2521.745 3404.325 3721.588453 OG Counties 7837583
## 2775 2521.745 3404.325 2997.170397 OG Counties 7837583
## 2776 2521.745 3404.325 2252.530275 OG Counties 7837583
## 2777 2521.745 3404.325 2318.143465 OG Counties 7837583
## 2778 2521.745 3404.325 856.854704 OG Counties 7837583
## 2779 2521.745 3404.325 1509.767234 OG Counties 7837583
## 2780 2521.745 3404.325 4613.849920 OG Counties 7837583
## 2781 2521.745 3404.325 1176.074755 OG Counties 7837583
## 2782 2521.745 3404.325 876.913520 OG Counties 7837583
## 2783 2521.745 3404.325 8409.214826 OG Counties 7837583
## 2784 2521.745 3404.325 29077.683654 OG Counties 7837583
## 2785 2521.745 3404.325 2088.671908 OG Counties 7837583
## 2786 2521.745 3404.325 1355.436832 OG Counties 7837583
## 2787 2521.745 3404.325 1433.854430 OG Counties 7837583
## 2788 2521.745 3404.325 11089.315564 OG Counties 7837583
## 2789 2521.745 3404.325 1125.992074 OG Counties 7837583
## 2790 2521.745 3404.325 1468.332291 OG Counties 7837583
## 2791 2521.745 3404.325 1849.649418 OG Counties 7837583
## 2792 2521.745 3404.325 29.279524 OG Counties 7837583
## 2793 2521.745 3404.325 1108.625528 OG Counties 7837583
## 2794 2521.745 3404.325 2801.032757 OG Counties 7837583
## 2795 2521.745 3404.325 3241.916814 OG Counties 7837583
## 2796 2521.745 3404.325 2283.283221 OG Counties 7837583
## 2797 2521.745 3404.325 1777.241812 OG Counties 7837583
## 2798 2521.745 3404.325 2426.153444 OG Counties 7837583
## 2799 2521.745 3404.325 2298.406568 OG Counties 7837583
## 2800 2521.745 3404.325 570.749194 OG Counties 7837583
## 2801 2521.745 3404.325 1753.681848 OG Counties 7837583
## 2802 2521.745 3404.325 1427.147439 OG Counties 7837583
## 2803 2521.745 3404.325 1632.327387 OG Counties 7837583
## 2804 2521.745 3404.325 146.317937 OG Counties 7837583
## 2805 2521.745 3404.325 1452.876959 OG Counties 7837583
## 2806 2521.745 3404.325 2697.839821 OG Counties 7837583
## 2807 2521.745 3404.325 933.354405 OG Counties 7837583
## 2808 2521.745 3404.325 10340.613722 OG Counties 7837583
## 2809 2521.745 3404.325 962.179840 OG Counties 7837583
## 2810 2521.745 3404.325 6874.026684 OG Counties 7837583
## 2811 2521.745 3404.325 4918.859913 OG Counties 7837583
## 2812 2521.745 3404.325 1609.223443 OG Counties 7837583
## 2813 2521.745 3404.325 1200.474752 OG Counties 7837583
## 2814 2521.745 3404.325 1483.567653 OG Counties 7837583
## 2815 2521.745 3404.325 1804.051980 OG Counties 7837583
## 2816 2521.745 3404.325 1700.853280 OG Counties 7837583
## 2817 2521.745 3404.325 1510.993950 OG Counties 7837583
## 2818 2521.745 3404.325 1768.363846 OG Counties 7837583
## 2819 2521.745 3404.325 2004.542591 OG Counties 7837583
## 2820 2521.745 3404.325 1038.424511 OG Counties 7837583
## 2821 2521.745 3404.325 2016.887466 OG Counties 7837583
## 2822 2521.745 3404.325 9519.023232 OG Counties 7837583
## 2823 2521.745 3404.325 8616.706690 OG Counties 7837583
## 2824 2521.745 3404.325 716.698509 OG Counties 7837583
## 2825 2521.745 3404.325 5545.096483 OG Counties 7837583
## 2826 2521.745 3404.325 1716.958300 OG Counties 7837583
## 2827 2521.745 3404.325 1487.603092 OG Counties 7837583
## 2828 2521.745 3404.325 8367.542964 OG Counties 7837583
## 2829 2521.745 3404.325 1040.948176 OG Counties 7837583
## 2830 2521.745 3404.325 2044.280078 OG Counties 7837583
## 2831 2521.745 3404.325 992.929208 OG Counties 7837583
## 2832 2521.745 3404.325 408.060924 OG Counties 7837583
## 2833 2521.745 3404.325 2658.368025 OG Counties 7837583
## 2834 2521.745 3404.325 4243.614715 OG Counties 7837583
## 2835 2521.745 3404.325 176.130871 OG Counties 7837583
## 2836 2521.745 3404.325 1678.366508 OG Counties 7837583
## 2837 2521.745 3404.325 934.550058 OG Counties 7837583
## 2838 2521.745 3404.325 2212.391705 OG Counties 7837583
## 2839 2521.745 3404.325 5028.516435 OG Counties 7837583
## 2840 2521.745 3404.325 1202.144274 OG Counties 7837583
## 2841 2521.745 3404.325 1834.300602 OG Counties 7837583
## 2842 2521.745 3404.325 2040.243272 OG Counties 7837583
## 2843 2521.745 3404.325 1571.400583 OG Counties 7837583
## 2844 2521.745 3404.325 1778.117331 OG Counties 7837583
## 2845 2521.745 3404.325 562.477892 OG Counties 7837583
## 2846 2521.745 3404.325 2371.841041 OG Counties 7837583
## 2847 2521.745 3404.325 1205.829722 OG Counties 7837583
## 2848 2521.745 3404.325 3281.920942 OG Counties 7837583
## 2849 2521.745 3404.325 6168.643534 OG Counties 7837583
## 2850 2521.745 3404.325 18933.884017 OG Counties 7837583
## 2851 2521.745 3404.325 1576.907670 OG Counties 7837583
## 2852 2521.745 3404.325 1644.082314 OG Counties 7837583
## 2853 2521.745 3404.325 1727.836469 OG Counties 7837583
## 2854 2521.745 3404.325 1770.197540 OG Counties 7837583
## 2855 2521.745 3404.325 1143.171562 OG Counties 7837583
## 2856 2521.745 3404.325 2715.076916 OG Counties 7837583
## 2857 2521.745 3404.325 5224.880216 OG Counties 7837583
## 2858 2521.745 3404.325 3691.600070 OG Counties 7837583
## 2859 2521.745 3404.325 1916.302915 OG Counties 7837583
## 2860 2521.745 3404.325 1244.678725 OG Counties 7837583
## 2861 2521.745 3404.325 1870.259708 OG Counties 7837583
## 2862 2521.745 3404.325 1043.680974 OG Counties 7837583
## 2863 2521.745 3404.325 1109.039148 OG Counties 7837583
## 2864 2521.745 3404.325 3450.064259 OG Counties 7837583
## 2865 2521.745 3404.325 3214.093027 OG Counties 7837583
## 2866 2521.745 3404.325 2388.519056 OG Counties 7837583
## 2867 2521.745 3404.325 169.082460 OG Counties 7837583
## 2868 2521.745 3404.325 13521.393701 OG Counties 7837583
## 2869 2521.745 3404.325 633.642456 OG Counties 7837583
## 2870 2521.745 3404.325 1230.445327 OG Counties 7837583
## 2871 2521.745 3404.325 1136.773132 OG Counties 7837583
## 2872 2521.745 3404.325 6576.163714 OG Counties 7837583
## 2873 2521.745 3404.325 12404.198988 OG Counties 7837583
## 2874 2521.745 3404.325 2231.795342 OG Counties 7837583
## 2875 2521.745 3404.325 6958.768689 OG Counties 7837583
## 2876 2521.745 3404.325 1890.540573 OG Counties 7837583
## 2877 2521.745 3404.325 3764.951721 OG Counties 7837583
## 2878 2521.745 3404.325 3188.908006 OG Counties 7837583
## 2879 2521.745 3404.325 1691.954584 OG Counties 7837583
## 2880 2521.745 3404.325 1064.069647 OG Counties 7837583
## 2881 2521.745 3404.325 1900.735415 OG Counties 7837583
## 2882 2521.745 3404.325 968.278113 OG Counties 7837583
## 2883 2521.745 3404.325 2101.699638 OG Counties 7837583
## 2884 2521.745 3404.325 2936.373904 OG Counties 7837583
## 2885 2521.745 3404.325 1081.593860 OG Counties 7837583
## 2886 2521.745 3404.325 2911.371375 OG Counties 7837583
## 2887 2521.745 3404.325 8562.187160 OG Counties 7837583
## 2888 2521.745 3404.325 4781.990484 OG Counties 7837583
## 2889 2521.745 3404.325 2360.733430 OG Counties 7837583
## 2890 2521.745 3404.325 843.262677 OG Counties 7837583
## 2891 2521.745 3404.325 2717.434704 OG Counties 7837583
## 2892 2521.745 3404.325 1544.884851 OG Counties 7837583
## 2893 2521.745 3404.325 25684.119104 OG Counties 7837583
## 2894 2521.745 3404.325 2493.185877 OG Counties 7837583
## 2895 2521.745 3404.325 422.252951 OG Counties 7837583
## 2896 2521.745 3404.325 2495.953342 OG Counties 7837583
## 2897 2521.745 3404.325 1427.773405 OG Counties 7837583
## 2898 2521.745 3404.325 5932.027416 OG Counties 7837583
## 2899 2521.745 3404.325 4344.012740 OG Counties 7837583
## 2900 2521.745 3404.325 9075.944811 OG Counties 7837583
## 2901 2521.745 3404.325 3771.293354 OG Counties 7837583
## 2902 2521.745 3404.325 1604.527622 OG Counties 7837583
## 2903 2521.745 3404.325 2159.584176 OG Counties 7837583
## 2904 2521.745 3404.325 3880.840594 OG Counties 7837583
## 2905 2521.745 3404.325 1408.379368 OG Counties 7837583
## 2906 2521.745 3404.325 17404.991324 OG Counties 7837583
## 2907 2521.745 3404.325 9550.800907 OG Counties 7837583
## 2908 2521.745 3404.325 2415.078319 OG Counties 7837583
## 2909 2521.745 3404.325 1229.470113 OG Counties 7837583
## 2910 2521.745 3404.325 1952.266845 OG Counties 7837583
## 2911 2521.745 3404.325 1391.880782 OG Counties 7837583
## 2912 2521.745 3404.325 2805.825730 OG Counties 7837583
## 2913 2521.745 3404.325 1299.310498 OG Counties 7837583
## 2914 2521.745 3404.325 1053.189738 OG Counties 7837583
## 2915 2521.745 3404.325 1099.374642 OG Counties 7837583
## 2916 2521.745 3404.325 1161.604150 OG Counties 7837583
## 2917 2521.745 3404.325 4490.258972 OG Counties 7837583
## 2918 2521.745 3404.325 2182.152738 OG Counties 7837583
## 2919 2521.745 3404.325 1690.189461 OG Counties 7837583
## 2920 2521.745 3404.325 1655.879137 OG Counties 7837583
## 2921 2521.745 3404.325 1071.059235 OG Counties 7837583
## 2922 2521.745 3404.325 180.163309 OG Counties 7837583
## 2923 2521.745 3404.325 901.442396 OG Counties 7837583
## 2924 2521.745 3404.325 1211.356173 OG Counties 7837583
## 2925 2521.745 3404.325 2550.147125 OG Counties 7837583
## 2926 2521.745 3404.325 1167.643361 OG Counties 7837583
## 2927 2521.745 3404.325 782.020075 OG Counties 7837583
## 2928 2521.745 3404.325 2098.566154 OG Counties 7837583
## 2929 2521.745 3404.325 4529.041121 OG Counties 7837583
## 2930 2521.745 3404.325 4857.273422 OG Counties 7837583
## 2931 2521.745 3404.325 1070.590449 OG Counties 7837583
## 2932 2521.745 3404.325 2225.770807 OG Counties 7837583
## 2933 2521.745 3404.325 1224.638886 OG Counties 7837583
## 2934 2521.745 3404.325 1159.152125 OG Counties 7837583
## 2935 2521.745 3404.325 1204.202406 OG Counties 7837583
## 2936 2521.745 3404.325 1017.202936 OG Counties 7837583
## 2937 2521.745 3404.325 1998.270812 OG Counties 7837583
## 2938 2521.745 3404.325 2392.627981 OG Counties 7837583
## 2939 2521.745 3404.325 2063.105848 OG Counties 7837583
## 2940 2521.745 3404.325 1722.771917 OG Counties 7837583
## 2941 2521.745 3404.325 1989.844196 OG Counties 7837583
## 2942 2521.745 3404.325 664.517648 OG Counties 7837583
## 2943 2521.745 3404.325 3338.625738 OG Counties 7837583
## 2944 2521.745 3404.325 4943.844986 OG Counties 7837583
## 2945 2521.745 3404.325 1345.461046 OG Counties 7837583
## 2946 2521.745 3404.325 2270.221795 OG Counties 7837583
## 2947 2521.745 3404.325 1055.875497 OG Counties 7837583
## 2948 2521.745 3404.325 8767.500454 OG Counties 7837583
## 2949 2521.745 3404.325 586.026711 OG Counties 7837583
## 2950 2521.745 3404.325 1957.423952 OG Counties 7837583
## 2951 2521.745 3404.325 3746.132109 OG Counties 7837583
## 2952 2521.745 3404.325 4156.637944 OG Counties 7837583
## 2953 2521.745 3404.325 2424.680793 OG Counties 7837583
## 2954 2521.745 3404.325 5495.057566 OG Counties 7837583
## 2955 2521.745 3404.325 2822.102898 OG Counties 7837583
## 2956 2521.745 3404.325 1434.567782 OG Counties 7837583
## 2957 2521.745 3404.325 1911.303929 OG Counties 7837583
## 2958 2521.745 3404.325 1412.600251 OG Counties 7837583
## 2959 2521.745 3404.325 1028.008894 OG Counties 7837583
## 2960 2521.745 3404.325 890.148274 OG Counties 7837583
## 2961 2521.745 3404.325 12802.233003 OG Counties 7837583
## 2962 2521.745 3404.325 3674.302962 OG Counties 7837583
## 2963 2521.745 3404.325 5414.959461 OG Counties 7837583
## 2964 2521.745 3404.325 2992.664754 OG Counties 7837583
## 2965 2521.745 3404.325 1726.874330 OG Counties 7837583
## 2966 2521.745 3404.325 1818.606707 OG Counties 7837583
## 2967 2521.745 3404.325 1621.958734 OG Counties 7837583
## 2968 2521.745 3404.325 1383.877823 OG Counties 7837583
## 2969 2521.745 3404.325 1016.643068 OG Counties 7837583
## 2970 2521.745 3404.325 2074.291040 OG Counties 7837583
## 2971 2521.745 3404.325 486.095516 OG Counties 7837583
## 2972 2521.745 3404.325 2832.237933 OG Counties 7837583
## 2973 2521.745 3404.325 1784.258129 OG Counties 7837583
## 2974 2521.745 3404.325 1039.786918 OG Counties 7837583
## 2975 2521.745 3404.325 911.492871 OG Counties 7837583
## 2976 2521.745 3404.325 19924.965268 OG Counties 7837583
## 2977 2521.745 3404.325 9591.445142 OG Counties 7837583
## 2978 2521.745 3404.325 7018.594953 OG Counties 7837583
## 2979 2521.745 3404.325 1796.089722 OG Counties 7837583
## 2980 2521.745 3404.325 2329.890947 OG Counties 7837583
## 2981 2521.745 3404.325 1202.456468 OG Counties 7837583
## 2982 2521.745 3404.325 4345.182966 OG Counties 7837583
## 2983 2521.745 3404.325 1145.285873 OG Counties 7837583
## 2984 2521.745 3404.325 1408.844621 OG Counties 7837583
## 2985 2521.745 3404.325 2129.220729 OG Counties 7837583
## 2986 2521.745 3404.325 5117.976293 OG Counties 7837583
## 2987 2521.745 3404.325 1839.118092 OG Counties 7837583
## 2988 2521.745 3404.325 2769.235185 OG Counties 7837583
## 2989 2521.745 3404.325 2100.787199 OG Counties 7837583
## 2990 2521.745 3404.325 2731.363577 OG Counties 7837583
## 2991 2521.745 3404.325 1508.506980 OG Counties 7837583
## 2992 2521.745 3404.325 2382.263678 OG Counties 7837583
## 2993 2521.745 3404.325 4127.220760 OG Counties 7837583
## 2994 2521.745 3404.325 4598.620898 OG Counties 7837583
## 2995 2521.745 3404.325 1095.573246 OG Counties 7837583
## 2996 2521.745 3404.325 3067.856529 OG Counties 7837583
## 2997 2521.745 3404.325 15605.775560 OG Counties 7837583
## 2998 2521.745 3404.325 12302.563768 OG Counties 7837583
## 2999 2521.745 3404.325 1786.439315 OG Counties 7837583
## 3000 2521.745 3404.325 2689.592843 OG Counties 7837583
## 3001 2521.745 3404.325 1345.975401 OG Counties 7837583
## 3002 2521.745 3404.325 1003.053820 OG Counties 7837583
## 3003 2521.745 3404.325 1130.264681 OG Counties 7837583
## 3004 2521.745 3404.325 1226.541720 OG Counties 7837583
## 3005 2521.745 3404.325 3581.527451 OG Counties 7837583
## 3006 2521.745 3404.325 7921.880385 OG Counties 7837583
## 3007 2521.745 3404.325 8619.571937 OG Counties 7837583
## 3008 2521.745 3404.325 5283.081526 OG Counties 7837583
## 3009 2521.745 3404.325 2277.058663 OG Counties 7837583
## 3010 2521.745 3404.325 1045.227399 OG Counties 7837583
## 3011 2521.745 3404.325 1694.757903 OG Counties 7837583
## 3012 2521.745 3404.325 1162.230092 OG Counties 7837583
## 3013 2521.745 3404.325 1184.475337 OG Counties 7837583
## 3014 2521.745 3404.325 2222.543118 OG Counties 7837583
## 3015 2521.745 3404.325 5223.603331 OG Counties 7837583
## 3016 2521.745 3404.325 1442.757360 OG Counties 7837583
## 3017 2521.745 3404.325 1438.547705 OG Counties 7837583
## 3018 2521.745 3404.325 1078.708763 OG Counties 7837583
## 3019 2521.745 3404.325 20866.152302 OG Counties 7837583
## 3020 2521.745 3404.325 1412.858899 OG Counties 7837583
## 3021 2521.745 3404.325 1941.974361 OG Counties 7837583
## 3022 2521.745 3404.325 284.982718 OG Counties 7837583
## 3023 2521.745 3404.325 752.630988 OG Counties 7837583
## 3024 2521.745 3404.325 2745.327573 OG Counties 7837583
## 3025 2521.745 3404.325 777.894601 OG Counties 7837583
## 3026 2521.745 3404.325 1663.745263 OG Counties 7837583
## 3027 2521.745 3404.325 1558.031978 OG Counties 7837583
## 3028 2521.745 3404.325 5225.481836 OG Counties 7837583
## 3029 2521.745 3404.325 1680.300940 OG Counties 7837583
## 3030 2521.745 3404.325 722.853444 OG Counties 7837583
## 3031 2521.745 3404.325 737.281348 OG Counties 7837583
## 3032 2521.745 3404.325 1279.522827 OG Counties 7837583
## 3033 2521.745 3404.325 4670.217534 OG Counties 7837583
## 3034 2521.745 3404.325 989.398609 OG Counties 7837583
## 3035 2521.745 3404.325 1545.053395 OG Counties 7837583
## 3036 2521.745 3404.325 5927.155134 OG Counties 7837583
## 3037 2521.745 3404.325 11357.723058 OG Counties 7837583
## 3038 2521.745 3404.325 4209.378965 OG Counties 7837583
## 3039 2521.745 3404.325 490.697255 OG Counties 7837583
## 3040 2521.745 3404.325 2073.483060 OG Counties 7837583
## 3041 2521.745 3404.325 2587.196974 OG Counties 7837583
## 3042 2521.745 3404.325 10386.553188 OG Counties 7837583
## 3043 2521.745 3404.325 4002.261908 OG Counties 7837583
## 3044 2521.745 3404.325 8248.778863 OG Counties 7837583
## 3045 2521.745 3404.325 2746.817110 OG Counties 7837583
## 3046 2521.745 3404.325 1082.190227 OG Counties 7837583
## 3047 2521.745 3404.325 9120.171785 OG Counties 7837583
## 3048 2521.745 3404.325 22056.687436 OG Counties 7837583
## 3049 2521.745 3404.325 2325.374467 OG Counties 7837583
## 3050 2521.745 3404.325 1079.639425 OG Counties 7837583
## 3051 2521.745 3404.325 1417.754186 OG Counties 7837583
## 3052 2521.745 3404.325 1909.715554 OG Counties 7837583
## 3053 2521.745 3404.325 2885.066088 OG Counties 7837583
## 3054 2521.745 3404.325 2250.203521 OG Counties 7837583
## 3055 2521.745 3404.325 472.183891 OG Counties 7837583
## 3056 2521.745 3404.325 1838.550753 OG Counties 7837583
## 3057 2521.745 3404.325 562.588329 OG Counties 7837583
## 3058 2521.745 3404.325 1353.426513 OG Counties 7837583
## 3059 2521.745 3404.325 1609.190338 OG Counties 7837583
## 3060 2521.745 3404.325 1090.663298 OG Counties 7837583
## 3061 2521.745 3404.325 3518.441439 OG Counties 7837583
## 3062 2521.745 3404.325 6883.444331 OG Counties 7837583
## 3063 2521.745 3404.325 2290.193540 OG Counties 7837583
## 3064 2521.745 3404.325 3215.691746 OG Counties 7837583
## 3065 2521.745 3404.325 13601.322556 OG Counties 7837583
## 3066 2521.745 3404.325 1045.360279 OG Counties 7837583
## 3067 2521.745 3404.325 3153.238577 OG Counties 7837583
## 3068 2521.745 3404.325 2988.474058 OG Counties 7837583
## 3069 2521.745 3404.325 1738.404459 OG Counties 7837583
## 3070 2521.745 3404.325 3027.759922 OG Counties 7837583
## 3071 2521.745 3404.325 2307.847467 OG Counties 7837583
## 3072 2521.745 3404.325 1317.162346 OG Counties 7837583
## 3073 2521.745 3404.325 3189.039330 OG Counties 7837583
## 3074 2521.745 3404.325 2634.863285 OG Counties 7837583
## 3075 2521.745 3404.325 1612.726310 OG Counties 7837583
## 3076 2521.745 3404.325 1835.759523 OG Counties 7837583
## 3077 2521.745 3404.325 163.004991 OG Counties 7837583
## 3078 2521.745 3404.325 980.991018 OG Counties 7837583
## 3079 2521.745 3404.325 1910.109840 OG Counties 7837583
## 3080 2521.745 3404.325 724.073168 OG Counties 7837583
## 3081 2521.745 3404.325 968.223414 OG Counties 7837583
## 3082 2521.745 3404.325 1586.643319 OG Counties 7837583
## 3083 2521.745 3404.325 11980.678837 OG Counties 7837583
## 3084 2521.745 3404.325 792.412679 OG Counties 7837583
## 3085 2521.745 3404.325 2694.877830 OG Counties 7837583
## 3086 2521.745 3404.325 391.533599 OG Counties 7837583
## 3087 2521.745 3404.325 1669.020761 OG Counties 7837583
## 3088 2521.745 3404.325 3794.899295 OG Counties 7837583
## 3089 2521.745 3404.325 4155.270896 OG Counties 7837583
## 3090 2521.745 3404.325 2313.245156 OG Counties 7837583
## 3091 2521.745 3404.325 17658.665549 OG Counties 7837583
## 3092 2521.745 3404.325 1715.617548 OG Counties 7837583
## 3093 2521.745 3404.325 7984.269516 OG Counties 7837583
## 3094 2521.745 3404.325 1349.718946 OG Counties 7837583
## 3095 2521.745 3404.325 2469.845864 OG Counties 7837583
## 3096 2521.745 3404.325 2329.844558 OG Counties 7837583
## 3097 2521.745 3404.325 1014.095037 OG Counties 7837583
## 3098 2521.745 3404.325 2526.355441 OG Counties 7837583
## 3099 2521.745 3404.325 1251.407207 OG Counties 7837583
## 3100 2521.745 3404.325 880.014400 OG Counties 7837583
## 3101 2521.745 3404.325 2757.934002 OG Counties 7837583
## 3102 2521.745 3404.325 2843.947869 OG Counties 7837583
## 3103 2521.745 3404.325 1219.993961 OG Counties 7837583
## 3104 2521.745 3404.325 679.826326 OG Counties 7837583
## 3105 2521.745 3404.325 2039.229914 OG Counties 7837583
## 3106 2521.745 3404.325 8615.016154 OG Counties 7837583
## 3107 2521.745 3404.325 13100.020380 OG Counties 7837583
## 3108 2521.745 3404.325 1841.202675 OG Counties 7837583
tess_summary = bind_rows(
get_df(triang, "Trianguation"), # Seem to have very large standard deviation values
get_df(veroni, "Voroni"), #Due to
get_df(sq_grid, "Square"), #All areas are equal, might make it more difficult for mean analysis.
get_df(sq_hex, "Hexagonal"), # Standard deviation of 0, all areas equal but slightly smaller then square
get_df(CONUS, "OG Counties")
)
#2.5
knitr::kable(tess_summary,
caption = "Five tessellation summaries",
col.names = c("Mean", "Standard Deviation", "Area", "Type", "Count"),
max.rows = 6,
format.args = list(big.mark = ","))
| Mean | Standard Deviation | Area | Type | Count |
|---|---|---|---|---|
| 1,251.902 | 1,578.183 | 1.253365e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.896122e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.805993e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.193985e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.183572e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.506469e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.865868e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.636332e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.832592e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.984914e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.565861e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.318286e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.348114e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.605615e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.343130e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.323878e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.440538e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.488007e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.972267e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.436333e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.552651e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.734965e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.152606e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.426481e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.024995e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.073064e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.161136e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.950348e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.658067e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.075570e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.142132e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.473733e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.090424e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.815019e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.923236e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.268295e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.239619e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.926340e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.877888e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.519274e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.234385e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.837476e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.016531e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.336223e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.040012e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.013797e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.639775e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.144036e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.436650e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.738094e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.165694e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.502339e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.370846e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.102778e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.886064e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.269652e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.967850e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.338791e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.289387e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.225699e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.382062e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.966888e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.107344e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.397674e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.695135e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.374808e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.725442e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.170836e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.859257e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.004253e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.501813e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.514020e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.000539e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.973404e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.076586e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.464544e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.991842e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.498180e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.314099e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.369213e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.342477e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.367441e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.028071e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.758033e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.427238e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.955231e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.463477e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.088475e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.074917e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.272072e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.028901e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.423851e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.155929e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.060960e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.083750e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.476643e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.013039e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.958379e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.862255e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.380390e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.277169e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.159555e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.577320e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.966572e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.756727e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.639766e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.282586e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.281530e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.252271e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.088133e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.441391e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.108654e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.297291e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.205514e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.351707e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.017037e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.159048e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.198346e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.889441e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.182738e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.809167e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.655522e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.773776e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.148075e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.201222e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.572012e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.105058e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.609544e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.529758e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.544629e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.784604e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.210003e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.421139e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.171860e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.744013e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.217738e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.480477e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.328996e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.554922e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.224454e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.500089e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.689541e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.875132e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.851819e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.560504e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.244854e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.927010e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.755246e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.441660e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.349253e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.160112e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.384639e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.666873e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.102687e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.383314e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.096404e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.744342e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.442027e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.951968e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.342499e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.669585e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.426617e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.393060e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.523949e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.862310e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.416239e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.844340e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.897590e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.818820e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.243685e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.507974e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.906102e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.241455e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.683824e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.990578e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.537319e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.147245e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.829303e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.498573e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.919842e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.439609e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.715580e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.564116e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.692645e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.948440e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.013011e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.147475e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.056294e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.483734e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.896694e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.099911e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.496387e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.912448e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.060188e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.677325e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.336785e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.050429e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.310400e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.848498e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.125619e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.226818e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.141822e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.278674e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.132896e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.000943e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.612526e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.323552e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.214198e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.219708e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.831609e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.186183e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.495237e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.900734e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.306529e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.850456e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.691265e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.844069e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.891236e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.712764e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.739930e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.523641e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.765641e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.858699e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.116437e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.549657e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.160494e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.363879e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.315225e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.640079e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.557516e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.108570e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.640224e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.935339e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.681964e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.336002e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.117592e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.448732e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.338126e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.141207e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.227946e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.330120e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.679880e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.380644e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.954653e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.998252e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.186439e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.632031e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.506265e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.206262e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.869342e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.851940e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.409850e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.665292e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.219829e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.490642e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.073380e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.226170e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.966214e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.384897e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.717270e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.946886e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.626772e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.698318e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.895925e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.813246e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.665317e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.677751e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.402883e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.463458e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.109092e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.654556e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.818146e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.265333e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.961732e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.544814e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.567260e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.405469e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.358556e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.388652e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.813015e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.174738e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.684810e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.418844e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.176515e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.950023e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.849613e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.033201e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.904798e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.762198e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.631252e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.042519e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.062795e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.729869e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.101217e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.237057e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.603612e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.069328e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.086045e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.238500e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.303662e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.663669e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.243683e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.316305e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.977010e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.630197e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.692419e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.690165e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.633782e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.010969e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.970751e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.449832e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.467857e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.270720e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.102271e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.634458e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.442015e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.859147e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.221036e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.596279e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.402363e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.859231e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.285620e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.169688e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.106654e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.718246e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.527221e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.498081e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.423132e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.563201e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.785913e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.981724e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.837574e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.208891e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.324401e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.917767e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.049104e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.881011e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.945410e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.603087e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.019758e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.246208e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.059772e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.593239e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.654135e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.586641e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.233404e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.416521e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.591216e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.720811e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.810412e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.537452e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.540156e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.852223e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.417151e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.195722e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.232239e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.897848e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.830965e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.074363e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.252508e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.284435e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.165302e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.145382e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.311779e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.690972e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.357381e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.581103e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.864900e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.218389e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.182238e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.993060e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.097127e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.729339e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.458387e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.328974e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.207767e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.972640e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.204335e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.498557e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.206298e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.303788e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.972626e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.645588e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.681608e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.253323e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.073114e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.334896e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.005936e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.459399e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.338096e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.442455e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.898203e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.065612e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.789306e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.593990e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.304423e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.280262e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.175910e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.218530e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.647842e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.988035e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.336132e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.790743e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.400393e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.637989e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.580584e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.010909e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.384999e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.589132e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.260028e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.036918e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.565487e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.316365e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.121154e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.960879e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.994613e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.532950e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.446010e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.068731e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.137506e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.849189e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.904995e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.207259e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.080059e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.962639e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.497504e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.470200e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.465473e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.718893e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.251168e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.536801e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.971975e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.083916e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.730357e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.655935e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.038263e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.868524e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.908254e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.952821e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.059913e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.112355e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.230639e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.331981e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.234661e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.337399e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.619897e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.543649e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.317757e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.362977e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.269054e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.261038e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.545312e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.925406e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.135603e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.437935e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.209405e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.288398e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.001179e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.034726e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.178675e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.182838e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.296523e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.988666e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.141705e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.283748e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.491537e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.554282e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.941096e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.724724e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.181502e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.250399e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.334513e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.892288e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.073943e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.971688e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.060602e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.925409e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.129169e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.399406e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.945119e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.301212e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.720467e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.395746e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.586522e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.144188e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.301602e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.144157e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.690996e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.486518e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.134464e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.764649e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.263265e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.686524e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.546700e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.810125e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.093804e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.454441e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.336473e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.317966e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.157972e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.813098e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.951247e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.489300e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.181065e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.046477e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.010949e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.338406e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.395266e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.158801e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.728487e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.007311e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.404373e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.681572e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.900002e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.959898e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.112809e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.438369e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.769761e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.180137e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.053113e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.703230e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.324531e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.191885e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.664053e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.012076e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.339862e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.927624e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.650071e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.163860e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.987658e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.167946e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.352763e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.766742e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.876213e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.241237e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.713134e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.252101e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.981807e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.073783e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.178392e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.910345e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.344794e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.659861e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.012685e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.495945e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.785165e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.689278e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.366732e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.471655e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.691520e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.369883e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.107922e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.669420e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.432139e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.113867e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.436375e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.018318e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.355542e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.641230e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.042071e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.367920e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.466043e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.346059e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.492445e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.267686e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.896533e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.352129e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.852264e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.268507e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.829149e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.967313e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.949714e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.906342e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.375559e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.579114e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.714344e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.789685e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.557547e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.229111e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.389599e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.477291e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.961483e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.703953e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.890898e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.493306e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.839293e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.955463e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.409637e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.433078e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.320898e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.181583e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.805741e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.572178e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.100412e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.706573e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.313150e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.632045e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.812952e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.419335e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.319956e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.014422e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.518390e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.963485e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.490420e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.650163e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.367857e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.495482e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.580721e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.441757e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.229205e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.546131e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.289718e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.343674e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.344414e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.628158e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.337063e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.865804e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.174954e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.805271e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.842937e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.406888e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.941638e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.420148e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.689780e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.799692e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.395030e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.884560e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.116315e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.070171e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.429586e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.923289e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.266960e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.127939e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.147170e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.849709e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.110027e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.329754e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.164772e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.643370e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.934226e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.838326e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.364107e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.230310e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.220424e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.341753e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.566607e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.678800e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.150557e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.159345e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.147576e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.642004e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.237929e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.153485e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.497644e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.244034e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.286361e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.150252e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.444451e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.109965e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.086119e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.904716e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.881835e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.929788e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.504484e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.998648e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.565614e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.770910e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.546739e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.712748e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.396229e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.719014e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.166240e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.293762e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.228606e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.569957e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.129657e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.687224e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.381362e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.651452e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.229583e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.475856e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.839155e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.153320e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.220959e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.138938e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.211098e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.895653e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.387104e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.053349e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.772853e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.554433e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.012191e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.003983e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.906600e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.801906e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.358572e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.339329e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.767154e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.621988e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.420381e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.278807e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.994087e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.230785e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.857714e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.351170e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.633674e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.715462e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.776691e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.816095e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.286362e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.010466e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.872428e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.492439e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.507755e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.531104e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.567655e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.095892e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.308362e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.883839e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.611863e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.463555e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.401690e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.659729e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.020810e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.530994e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.604637e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.133106e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.305620e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.075553e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.224791e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.515502e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.174984e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.517813e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.878028e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.468121e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.998182e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.652265e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.021065e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.177443e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.669424e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.288862e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.481154e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.592236e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.309060e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.061013e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.419896e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.583844e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.118330e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.316783e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.102161e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.410807e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.610224e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.479377e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.736570e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.156676e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.564080e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.736937e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.774278e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.566365e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.590589e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.909411e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.120778e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.123445e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.869354e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.524799e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.269495e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.535393e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.301438e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.135462e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.816200e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.933813e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.112799e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.578150e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.539774e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.516672e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.273440e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.435976e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.458486e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.168832e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.248351e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.011094e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.803784e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.020896e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.207675e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.434268e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.205241e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.300777e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.979026e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.514652e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.928800e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.994349e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.044948e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.300204e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.760660e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.403056e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.615034e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.425108e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.159540e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.559685e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.017703e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.438960e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.010157e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.951218e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.328519e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.824462e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.460502e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.862229e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.066647e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.286455e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.931943e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.326194e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.576608e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.216329e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.154048e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.594605e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.214657e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.230499e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.828918e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.969482e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.478474e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.307831e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.767923e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.189823e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.051813e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.215145e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.027102e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.832293e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.625676e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.504351e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.138215e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.049253e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.464095e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.162961e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.300833e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.008335e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.039532e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.390541e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.199049e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.906840e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.821597e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.140305e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.988207e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.055924e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.495764e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.083667e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.148196e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.085967e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.857085e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.060721e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.987240e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.303429e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.692374e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.511579e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.863811e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.563475e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.722778e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.721765e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.733587e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.682940e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.730617e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.813504e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.456820e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.561801e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.644021e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.692336e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.282851e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.681420e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.065167e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.657032e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.548892e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.369838e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.601839e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.100593e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.413370e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.551527e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.345126e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.274669e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.936028e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.040808e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.725370e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.302046e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.174911e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.248022e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.873089e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.662823e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.607627e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.074406e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.186571e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.561047e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.053274e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.899649e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.131742e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.390051e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.321552e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.082744e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.660241e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.283951e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.001759e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.163321e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.023364e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.309049e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.069074e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.264866e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.778960e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.049811e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.249346e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.245150e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.133385e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.420061e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.153948e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.901171e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.020208e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.513399e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.556052e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.662632e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.050885e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.031535e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.049304e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.993319e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.480580e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.167174e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.628689e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.638281e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.974660e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.829070e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.697095e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.452794e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.574971e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.166990e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.635059e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.266054e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.221948e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.424079e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.288577e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.857945e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.112899e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.716453e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.193588e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.960204e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.853711e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.326364e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.258454e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.869757e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.796721e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.081060e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.623195e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.402244e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.695735e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.863016e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.446263e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.113638e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.010412e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.760469e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.430311e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.674350e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.418460e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.133439e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.395845e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.015053e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.166897e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.177963e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.604851e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.812917e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.931024e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.502391e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.937456e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.640204e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.864951e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.759323e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.453993e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.394681e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.707590e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.609472e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.304183e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.723002e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.915259e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.083462e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.195227e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.115427e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.829961e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.692007e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.786516e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.253062e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.889373e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.040711e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.997421e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.290788e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.753222e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.732748e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.904337e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.435745e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.625960e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.531214e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.306713e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.478191e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.342804e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.950362e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.426376e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.100460e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.877722e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.355806e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.215170e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.112531e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.180080e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.372235e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.814958e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.628451e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.683824e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.956335e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.680708e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.451267e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.763040e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.740585e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.662090e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.482591e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.574702e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.413376e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.346501e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.173696e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.459975e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.124938e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.361791e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.448105e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.485561e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.324265e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.130729e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.364311e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.861110e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.056409e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.052273e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.411670e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.564575e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.296288e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.982325e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.068300e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.408238e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.186048e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.647260e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.611049e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.364137e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.090692e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.305979e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.425056e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.368246e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.432581e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.569414e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.764049e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.657340e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.368656e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.456500e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.344600e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.059923e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.748708e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.115639e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.624927e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.104734e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.092097e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.122748e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.211895e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.139659e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.368749e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.314502e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.626217e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.177323e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.043950e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.016512e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.159029e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.368793e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.245150e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.779502e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.074060e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.600145e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.053117e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.134444e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.035741e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.185331e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.241370e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.786259e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.247153e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.628535e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.027256e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.501080e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.818179e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.333328e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.063804e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.271405e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.527559e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.965202e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.389900e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.200273e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.103596e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.336769e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.115314e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.522567e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.930468e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.046387e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.171736e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.395455e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.461315e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.421854e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.071124e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.004119e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.255286e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.212787e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.794623e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.302714e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.254717e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.638399e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.766354e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.673667e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.431489e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.218897e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.815488e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.842708e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.573440e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.110297e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.096230e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.769285e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.673384e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.798404e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.291130e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.347429e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.560556e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.378983e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.044590e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.968521e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.681334e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.244985e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.953756e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.246622e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.746088e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.241537e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.950036e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.824886e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.425325e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.764389e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.409278e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.399549e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.602812e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.591041e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.636004e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.162185e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.795644e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.547730e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.383801e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.449300e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.966723e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.156332e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.880526e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.614934e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.622657e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.823597e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.409878e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.932482e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.929997e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.450455e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.715125e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.052886e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.700237e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.160365e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.583611e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.797195e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.447639e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.386540e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.118512e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.752943e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.782663e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.147246e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.594623e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.343974e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.366208e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.864408e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.310172e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.086732e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.545991e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.075690e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.101347e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.228307e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.173915e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.423532e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.625616e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.404691e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.021060e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.344835e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.638268e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.601159e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.601811e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.302721e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.166999e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.859238e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.485250e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.737138e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.034897e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.266451e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.451872e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.719411e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.613672e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.006239e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.844477e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.791672e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.158719e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.430171e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.735623e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.005096e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.575588e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.255557e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.515645e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.971165e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.980376e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.377591e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.809631e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.463303e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.100757e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.163339e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.850588e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.478553e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.790261e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.389619e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.173767e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.098500e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.514285e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.632450e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.559629e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.737733e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.287853e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.650972e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.063650e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.394449e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.218811e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.437439e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.809002e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.065719e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.920334e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.281681e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.504465e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.031243e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.107707e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.140204e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.162895e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.788759e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.795669e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.296852e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.001263e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.027774e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.657195e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.062478e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.830982e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.327597e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.517475e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.599217e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.041435e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.193066e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.075734e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.109134e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.021025e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.023373e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.229883e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.110127e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.734155e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.254617e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.099957e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.850072e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.565478e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.040452e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.186636e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.292173e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.129366e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.091546e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.751653e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.133682e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.062489e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.278426e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.662878e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.380516e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.141523e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.645938e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.211336e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.271719e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.455173e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.271484e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.447460e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.430881e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.088382e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.197034e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.760885e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.311568e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.762536e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.533674e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.667621e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.262354e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.368658e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.437108e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.182039e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.559823e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.751667e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.158794e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.689109e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.517226e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.852199e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.289941e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.796280e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.754433e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.370584e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.248601e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.176392e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.324226e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.968483e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.496809e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.634721e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.886398e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.761552e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.694165e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.314255e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.970364e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.477380e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.753695e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.091355e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.949646e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.261907e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.204873e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.960897e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.514007e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.347892e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.483151e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.377529e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.783619e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.476987e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.396413e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.738305e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.499143e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.154508e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.595846e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.292106e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.826830e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.446388e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.381216e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.000792e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.945515e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.636723e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.896188e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.098503e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.773056e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.909732e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.388524e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.236407e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.998743e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.036898e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.324265e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.682420e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.299600e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.631634e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.924620e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.730468e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.316486e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.054660e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.682534e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.018237e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.832786e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.830150e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.857966e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.571416e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.769845e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.300979e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.185449e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.294145e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.886800e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.317256e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.341052e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.395310e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.401623e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.829623e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.743372e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.690120e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.510022e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.026476e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.982078e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.949094e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.250873e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.643823e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.852879e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.124302e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.511350e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.487338e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.274136e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.454778e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.280533e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.585572e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.733424e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.191205e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.352387e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.732443e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.329595e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.956038e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.910111e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.815551e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.199147e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.913957e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.550933e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.183289e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.149861e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.768089e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.573977e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.253912e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.964535e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.934651e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.035739e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.262468e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.342993e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.428639e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.440202e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.581544e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.259243e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.236364e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.283939e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.264695e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.659789e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.457862e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.042324e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.915203e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.809211e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.658966e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.034242e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.317212e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.352644e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.017244e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.294364e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.920313e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.121395e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.812340e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.234360e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.593261e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.399300e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.103880e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.108855e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.743656e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.476507e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.140161e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.284215e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.359261e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.826572e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.322413e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.307680e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.357185e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.780435e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.237925e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.542824e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.616915e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.439496e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.345449e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.184585e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.271131e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.048177e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.103086e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.178036e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.261652e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.229965e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.289566e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.561792e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.706949e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.456397e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.271522e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.915262e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.047636e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.020191e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.112347e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.216987e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.066728e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.294152e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.910959e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.617464e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.785091e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.347797e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.481699e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.189312e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.662487e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.482012e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.413909e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.443915e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.098059e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.414981e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.749741e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.129361e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.576027e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.205758e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.504351e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.018433e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.094138e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.834330e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.919987e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.728279e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.066417e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.375591e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.795453e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.481045e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.599922e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.495963e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.693967e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.154459e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.150964e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.164198e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.294788e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.602728e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.840616e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.423473e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.318592e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.335970e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.554817e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.522551e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.484521e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.332121e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.502707e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.911854e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.006803e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.090381e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.245622e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.794616e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.989229e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.560731e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.141326e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.186341e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.158555e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.432663e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.521503e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.630383e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.975634e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.276979e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.366255e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.095985e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.758790e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.657156e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.073973e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.292236e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.088613e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.206241e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.372667e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.403813e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.282319e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.106635e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.098159e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.147576e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.516581e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.106931e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.002891e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.189149e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.095934e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.210717e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.688100e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.806436e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.722266e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.150060e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.410935e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.796413e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.076490e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.170751e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.379572e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.023373e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.765017e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.018411e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.142364e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.270707e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.710127e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.901478e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.902890e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.292020e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.890844e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.533553e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.908834e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.974818e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.928338e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.025213e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.380755e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.085789e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.546787e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.463020e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.423623e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.546896e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.511647e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.295078e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.844526e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.073066e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.266056e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.780499e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.145496e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.293101e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.136330e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.807880e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.332038e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.339478e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.761260e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.061515e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.382081e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.687262e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.360370e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.250701e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.350327e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.497165e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.082834e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.294471e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.698987e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.924873e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.277250e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.746862e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.350993e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.934089e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.361636e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.008406e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.917529e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.131555e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.993222e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.960219e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.037788e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.923139e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.231036e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.320326e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.705463e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.305536e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.005719e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.340922e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.667650e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.378551e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.077614e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.617002e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.276653e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.146884e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.715525e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.498071e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.084210e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.396410e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.241440e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.524488e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.359199e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.869657e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.540870e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.164112e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.949492e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.423283e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.507326e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.652173e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.642002e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.029895e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.519165e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.838511e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.240548e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.034801e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.526232e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.894708e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.566243e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.626337e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.964273e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.888184e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.366896e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.559720e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.685843e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.974031e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.215018e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.422738e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.016268e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.732059e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.849473e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.491565e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.338689e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.986447e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.784638e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.261908e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.102207e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.814594e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.371508e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.843818e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.121091e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.482555e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.357392e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.344086e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.313140e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.069985e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.877451e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.981347e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.821485e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.066209e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.822957e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.610667e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.277024e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.578458e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.010443e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.033226e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.726954e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.605932e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.354904e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.555407e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.587040e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.476310e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.240695e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.647093e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.648051e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.863775e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.190881e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.243993e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.833181e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.575863e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.625964e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.397357e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.782331e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.403635e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.153769e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.047850e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.691533e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.655893e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.523861e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.028907e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.433507e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.781197e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.295696e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.520853e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.006253e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.003276e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.053374e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.056380e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.175055e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.885198e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.575678e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.308144e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.015740e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.051628e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.978341e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.506596e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.377948e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.279499e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.159767e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.013333e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.754257e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.021968e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.124869e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.009205e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.241481e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.675239e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.206151e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.384386e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.162271e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.658329e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.628108e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.350966e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.473798e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.472437e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.243718e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.348448e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.170810e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.173297e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.563450e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.166285e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.562611e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.559457e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.543896e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.101582e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.104527e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.076262e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.151452e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.136583e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.544059e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.807074e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.853205e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.111450e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.740694e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.899051e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.597593e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.806514e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.332807e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.689452e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.508466e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.396164e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.163577e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.421697e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.830776e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.531367e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.661313e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.526046e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.255146e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.006044e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.511657e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.549132e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.535154e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.802575e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.050804e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.331662e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.039158e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.925476e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.539077e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.692403e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.867513e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.069451e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.247530e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.133695e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.126919e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.620384e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.381866e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.033618e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.974335e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.127968e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.151392e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.015072e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.043787e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.507847e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.001721e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.532411e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.591158e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.696799e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.013517e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.733580e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.106385e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.257788e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.541230e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.317983e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.215636e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.372244e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.825170e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.792672e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.278442e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.313870e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.279703e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.331785e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.521668e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.314906e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.270054e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.936514e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.291712e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.425639e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.013165e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.310622e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.129201e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.448437e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.582840e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.105431e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.622422e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.784165e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.038817e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.552439e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.092833e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.427506e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.068229e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.287568e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.051471e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.420101e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.273689e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.664525e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.409666e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.976302e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.205766e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.182261e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.956451e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.919087e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.619019e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.153858e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.390365e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.089548e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.874352e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.787262e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.662664e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.778538e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.036415e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.042738e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.791849e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.305977e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.200713e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.153921e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.981601e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.378040e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.391454e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.328019e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.029391e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.507518e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.835136e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.079451e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.073338e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.145955e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.013277e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.114576e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.888959e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.234744e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.676054e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.062705e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.363619e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.109884e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.004213e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.566215e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.357640e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.071838e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.220676e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.015868e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.228716e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.286769e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.461340e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.031017e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.728396e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.604772e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.524596e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.109864e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.485473e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.233673e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.372748e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.012523e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.575268e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.180367e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.066741e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.116581e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.312121e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.417190e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.388601e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.433473e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.438940e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.136936e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.095129e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.187191e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.329358e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.322851e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.281836e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.705724e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.501937e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.599633e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.822077e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.723245e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.865475e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.957060e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.268690e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.509068e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.495824e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.824049e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.559160e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.568654e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.189977e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.923916e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.325696e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.601632e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.056599e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.300367e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.314966e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.385219e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.070104e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.180114e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.825710e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.881773e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.521188e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.065402e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.767643e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.052439e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.101691e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.551288e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.237173e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.480056e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.210736e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.662562e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.219740e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.672007e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.727498e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.076646e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.262883e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.255746e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.277696e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.442331e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.317299e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.819990e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.697614e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.143111e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.803358e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.254876e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.175103e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.855542e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.364176e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.241914e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.006034e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.629124e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.511355e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.790563e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.263684e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.227770e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.446609e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.916538e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.710371e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.662993e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.405939e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.181141e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.826855e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.540390e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.207627e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.403559e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.002657e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.479841e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.078967e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.955042e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.311245e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.824945e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.582715e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.469277e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.733917e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.716751e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.875206e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.816265e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.988288e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.091669e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.501441e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.082279e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.226981e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.010084e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.776012e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.072901e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.302042e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.971577e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.862234e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.255592e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.483152e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.422883e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.390467e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.364539e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.111986e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.364113e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.814562e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.138430e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.053447e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.585477e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.649361e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.012800e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.858101e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.549862e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.901584e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.079216e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.080461e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.887052e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.741295e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.346989e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.310139e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.254512e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.155643e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.667143e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.096360e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.137679e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.261133e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.191554e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.281020e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.067261e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.166320e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.788753e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.237345e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.791182e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.869199e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.918213e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.072897e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.068074e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.566654e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.673949e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.142850e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.118715e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.431182e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.455657e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.049554e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.139676e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.367556e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.598213e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.241898e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.355740e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.972044e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.964194e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.593598e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.016621e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.992300e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.905251e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.423435e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.683956e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.162073e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.198152e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.628754e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.662856e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.912270e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.541433e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.196895e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.830520e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.144149e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.570412e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.676898e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.646671e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.756317e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.131163e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.694226e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.190115e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.900487e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.373718e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.614567e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.128704e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.251765e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.668670e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.404257e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.623473e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.560586e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.757261e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.506365e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.529693e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.720839e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.035704e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.241791e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.187865e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.596218e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.122036e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.842335e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.338567e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.162971e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.598848e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.804830e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.616949e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.397922e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.662116e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.045299e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.807243e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.083089e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.623657e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.223120e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.182801e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.096943e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.065360e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.299181e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.007328e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.067930e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.207109e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.238394e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.286253e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.392639e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.393450e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.154216e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.153346e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.051199e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.525503e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.081732e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.098308e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.295403e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.201231e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.298172e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.103420e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.630789e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.228652e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.692172e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.298045e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.203761e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.132742e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.290232e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.306037e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.691310e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.371892e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.496156e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.351559e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.544558e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.387027e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.344313e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.264524e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.285555e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.097708e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.176094e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.175927e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.172706e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.163090e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.163905e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.164577e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.166554e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.238618e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.237838e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.239137e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.228589e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.130253e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.331737e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.289509e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.393126e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.099276e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.013344e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.285951e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.895622e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.077025e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.708631e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.298505e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.672943e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.129144e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.532291e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.462189e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.900052e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.615262e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.313333e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.531093e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.225634e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.940001e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.950438e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.543105e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.033016e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.261258e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.143005e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.913173e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.285653e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.026914e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.700304e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.559264e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.662727e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.331503e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.431252e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.792550e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.033355e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.941719e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.629670e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.188109e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.547093e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.237592e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.580762e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.067795e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.182673e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.760679e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.648961e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.655296e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.501952e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.533919e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.759879e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.353167e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.367750e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.508772e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.481065e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.036208e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.089780e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.768304e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.165970e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.436107e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.329468e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.433091e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.035977e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.416508e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.462772e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.095525e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.286887e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.799113e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.350409e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.766915e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.027644e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.022597e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.099788e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.940943e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.737370e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.276789e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.264789e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.938802e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.656071e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.350720e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.395048e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.852943e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.748195e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.934655e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.509461e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.251607e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.574672e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.166962e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.332910e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.561214e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.992611e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.820311e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.622454e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.174583e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.413404e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.694420e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.221707e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.232572e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.391458e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.393949e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.301046e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.303490e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.305685e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.805704e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.272148e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.112759e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.509953e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.033875e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.485447e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.572988e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.621960e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.221002e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.072951e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.004462e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.070371e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.775992e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.912008e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.983183e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.282990e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.342836e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.671645e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.345480e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.704482e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.329604e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.573394e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.272721e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.922608e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.109664e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.414438e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.956950e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.362547e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.026394e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.634779e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.033654e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.918104e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.558725e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.373481e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.209582e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.945788e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.181070e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.016788e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.536052e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.004872e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.961475e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.532674e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.082331e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.354968e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.988393e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.306033e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.790611e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.724029e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.880616e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.124569e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.250897e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.711698e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.072246e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.376813e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.971218e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.468292e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.199580e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.270765e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.433747e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.331925e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.378195e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.556838e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.393364e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.301138e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.451723e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.608293e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.107749e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.243627e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.807696e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.061260e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.037638e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.965110e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.480641e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.870314e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.504072e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.254676e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.179188e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.962920e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.479377e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.159482e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.124697e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.800580e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.122883e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.274712e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.145956e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.335187e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.659244e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.096899e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.575539e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.032927e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.218152e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.399123e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.822210e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.431121e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.965972e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.076538e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.016807e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.037801e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.992357e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.821596e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.881314e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.681127e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.551405e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.346321e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.350963e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.880780e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.368055e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.982281e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.896687e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.629963e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.393902e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.755101e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.082051e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.300665e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.459031e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.051239e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.353243e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.860546e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.007836e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.350552e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.066339e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.291132e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.585167e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.399956e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.697330e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.492832e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.165281e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.613981e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.169830e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.815173e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.615374e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.386581e+00 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.874247e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.451595e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.536471e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.003110e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.026748e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.922139e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.173625e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.644861e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.255515e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.997281e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.544955e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.537927e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.325574e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.202100e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.468654e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.438947e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.520763e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.177609e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.778717e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.446698e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.274124e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.792069e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.019842e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.408826e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.083561e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.570353e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.462166e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.836478e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.010019e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.468574e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.222466e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.084058e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.673259e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.402079e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.730311e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.033747e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.823192e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.559553e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.760102e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.065622e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.977572e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.429399e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.867224e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.016296e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.105787e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.271693e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.539512e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.270760e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.900579e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.028624e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.831817e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.622953e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.942732e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.736059e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.222854e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.809056e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.935064e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.590062e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.157355e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.794589e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.090922e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.956978e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.289580e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.477668e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.135505e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.984618e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.177820e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.565414e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.542862e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.769105e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.168715e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.863705e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.979704e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.773993e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.701073e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.697452e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.831340e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.220538e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.988099e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.709479e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.128848e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.885389e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.932097e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.129888e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.597101e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.710562e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.466357e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.690327e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.011541e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.544078e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.136774e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.912402e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.021628e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.837089e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.276650e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.254749e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.355791e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.241771e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.175434e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.227183e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.462429e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.259005e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.409958e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.046401e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.462054e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.598243e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.113587e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.527099e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.631766e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.150285e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.096774e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.529685e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.466183e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.967377e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.167872e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.483678e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.557915e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.209805e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.166568e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.396754e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.609675e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.711199e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.457375e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.106768e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.472625e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.149282e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.220028e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.275659e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.326294e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.466779e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.861473e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.199962e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.033179e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.097594e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.817384e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.204419e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.105492e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.063970e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.281778e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.618147e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.383636e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.043499e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.699875e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.435592e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.695819e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.159969e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.386025e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.155941e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.595930e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.113694e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.398885e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.815824e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.051806e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.016575e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.125964e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.536401e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.260421e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.432858e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.323230e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.268447e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.241341e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.116767e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.183923e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.177765e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.175401e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.165965e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.165998e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.161661e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.163969e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.226874e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.233646e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.231717e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.233565e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.168289e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.564485e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.159074e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.576153e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.555353e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.558790e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.550450e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.660270e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.826720e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.866205e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.587398e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.867980e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.360852e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.378219e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.547592e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.243131e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.106943e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.459856e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.368600e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.234282e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.845072e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.339255e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.330987e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.781696e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.607479e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.646891e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.124239e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.903794e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.100411e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.933590e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.694990e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.282708e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.911922e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.297847e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.914874e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.126262e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.009837e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.907133e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.143164e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.117088e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.466692e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.061185e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.528272e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.595250e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.366033e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.290872e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.047996e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.648212e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.946452e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.031847e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.564042e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.232392e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.516776e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.730788e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.221725e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.061441e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.160047e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.045022e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.286468e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.536595e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.673626e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.554488e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.061863e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.745895e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.141944e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.464753e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.158389e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.276552e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.708996e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.118219e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.140036e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.701206e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.433434e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.241010e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.137569e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.403240e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.584347e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.066801e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.407717e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.506729e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.692953e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.164374e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.471610e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.426755e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.289294e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.231380e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.306437e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.839805e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.357421e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.273070e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.110310e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.425270e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.144936e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.069975e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.423308e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.993347e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.341649e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.272840e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.852313e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.226283e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.300779e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.742644e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.388383e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.383471e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.052210e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.299423e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.817024e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.462507e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.338773e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.476718e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.471689e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.028046e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.065923e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.879104e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.162653e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.913842e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.088625e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.367346e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.223078e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.406472e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.450702e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.264708e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.109941e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.917644e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.028650e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.955838e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.786206e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.551456e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.007184e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.902127e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.753976e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.720853e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.389074e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.819906e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.342843e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.659057e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.221848e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.816548e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.162461e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.460302e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.562308e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.496123e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.474789e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.321560e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.362579e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.308250e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.621233e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.695390e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.104459e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.364727e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.922135e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.399213e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.387122e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.856197e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.370827e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.164085e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.718206e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.543648e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.735538e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.273855e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.375271e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.786647e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.077166e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.373770e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.847295e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.589693e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.569117e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.973932e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.884786e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.757390e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.460551e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.170342e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.087272e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.352451e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.126644e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.086368e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.224773e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.850519e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.775105e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.068543e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.857842e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.548469e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.185299e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.205093e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.470824e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.812645e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.201404e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.253870e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.176663e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.884922e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.466371e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.944740e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.567482e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.582940e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.286335e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.209839e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.713260e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.315708e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.107739e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.943973e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.525983e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.467924e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.663117e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.419828e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.083571e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.497786e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.272065e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.392436e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.563864e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.038740e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.645093e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.933313e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.866447e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.809899e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.555014e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.294858e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.541547e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.951413e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.398807e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.788137e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.608869e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.465758e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.974852e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.779379e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.178542e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.535574e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.834471e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.111562e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.185637e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.193408e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.261830e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.150134e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.450278e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.140953e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.974106e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.289490e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.195754e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.643023e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.896996e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.351422e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.794251e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.416210e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.230891e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.221721e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.614577e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.633408e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.417785e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.888590e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.699728e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.110212e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.359407e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.932600e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.918858e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.629153e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.265585e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.630341e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.083440e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.923300e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.961669e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.258483e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.858533e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.489382e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.693907e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.067116e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.810656e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.893187e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.003691e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.224871e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.400697e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.295664e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.432009e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.644219e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.829804e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.988309e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.622042e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.036304e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.150530e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.250156e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.639319e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.082212e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.645552e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.120801e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.208361e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.987789e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.019376e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.159370e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.077821e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.472056e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.026432e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.834852e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.480506e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.532635e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.016946e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.319178e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.674206e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.059568e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.524928e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.508658e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.692852e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.235490e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.452913e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.210825e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.486191e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.074220e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.885849e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.230661e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.014428e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.497196e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.356822e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.067119e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.268204e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.149859e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.015508e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.914168e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.875532e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.927963e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.796531e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.278085e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.457931e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.500541e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.966506e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.283521e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.169522e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.771273e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.004514e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.067309e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.214610e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.252487e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.674917e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.002695e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.370754e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.103417e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.184122e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.063401e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.035652e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.991432e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.195352e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.476555e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.862719e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.990553e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.562610e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.913743e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.269590e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.070001e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.733167e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.004720e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.301223e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.764151e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.244700e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.064796e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.242108e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.263623e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.595553e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.700282e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.917218e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.701770e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.238161e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.371523e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.563439e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.080263e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.216498e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.137817e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.124573e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.131869e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.120008e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.459852e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.102650e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.053942e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.147699e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.109360e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.110197e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.087337e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.614505e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.108998e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.097438e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.234213e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.195142e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.183358e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.191654e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.183889e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.173468e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.164652e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.169599e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.170063e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.166839e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.228448e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.226499e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.226184e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.227782e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.165281e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.190675e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.190900e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.192687e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.186892e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.177421e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.186713e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.564755e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.546255e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.890311e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.115734e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.762504e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.098510e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.524887e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.326587e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.112329e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.399564e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.941403e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.332112e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.632063e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.546131e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.669077e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.907705e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.528593e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.310215e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.384933e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.340488e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.973295e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.960212e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.666416e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.937923e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.514293e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.495951e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.897001e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.574025e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.674331e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.967058e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.998091e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.488191e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.197793e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.655903e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.814208e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.620832e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.953764e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.772428e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.131819e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.762098e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.238486e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.056464e+04 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.119239e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.646957e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.063001e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.328359e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.505460e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.266511e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.698468e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.859018e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.034938e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.898622e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.457249e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.887628e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.271707e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.207858e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.321384e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.385899e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.630967e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.470064e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.046947e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.236066e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.118672e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.853269e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.232901e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.114852e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.757414e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.636166e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.395699e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.651607e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.709750e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.220940e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.936351e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.461112e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.805066e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.150243e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.771178e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.878347e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.011954e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.027197e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.795101e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.516167e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.150330e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.740937e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.193006e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.445936e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.373223e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.582139e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.334913e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.379680e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.685245e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.112079e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.808318e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.921667e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.437435e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.025234e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.093608e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.107254e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.384334e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.410792e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.791682e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.151251e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.788997e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.323359e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.087675e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.879218e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.174751e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.128736e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.430357e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.490013e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.812619e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.982278e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.369500e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.921609e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.237806e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.190874e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.421002e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.643428e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.263252e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.403170e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.504301e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.956360e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.165769e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.764983e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.237006e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.939884e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.202397e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.280598e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.119898e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.716692e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.498222e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.510130e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.269892e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.095154e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.649206e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.481213e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.499272e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.175242e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.862210e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.503040e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.112259e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.581750e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.173660e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.525294e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.094355e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.199294e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.116917e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.414974e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.107062e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.768040e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.149282e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.892592e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.972528e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.061936e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.273330e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.726467e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.376623e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.395848e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.238628e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.105663e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.590058e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.282913e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.253355e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.396241e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.513068e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.270524e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.944200e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.872410e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.050698e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.425127e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.185086e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.393459e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.284568e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.323488e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.687868e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.889613e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.017589e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.035960e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.714307e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.695654e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.373062e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.415252e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.808733e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.710265e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.266430e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.277829e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.007426e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.522536e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.125510e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.507239e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.240242e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.919854e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.642543e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.457135e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.269893e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.170551e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.234729e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.187721e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.513076e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.846186e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.326365e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.099398e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.164695e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.761965e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.147784e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.935447e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.294734e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.924495e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.327675e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.932870e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.235898e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.020815e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.691561e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.356396e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.521673e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.133848e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.231691e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.034500e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.853797e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.100106e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.456642e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.010278e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.936866e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.805112e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.796663e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.700458e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.689511e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.747989e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.210302e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.240498e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.003291e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.187934e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.687047e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.045272e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.234534e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.245460e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.475696e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.452481e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.661750e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.739021e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.166534e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.962154e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.515811e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.554769e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.218694e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.616418e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.774690e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.165573e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.452588e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.182113e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.282027e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.189391e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.332337e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.344705e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.261754e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.333002e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.576412e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.474845e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.821703e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.338380e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.997034e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.058941e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.271519e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.942749e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.480625e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.059372e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.006591e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.081178e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.226082e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.889986e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.146272e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.104423e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.204759e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.018641e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.338951e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.033925e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.868126e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.894269e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.751186e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.232141e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.806575e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.877860e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.767098e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.895936e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.287525e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.614299e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.785421e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.935302e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.240355e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.136662e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.230603e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.184846e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.046406e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.114041e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.747733e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.113868e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.591766e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.105417e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.102434e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.332011e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.220929e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.154948e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.003936e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.750530e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.985173e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.027776e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.185354e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.255143e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.597305e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.306817e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.610862e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.698111e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.992059e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.116029e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.420991e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.212475e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.376017e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.536333e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.244738e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.662247e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.770117e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.703432e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.204703e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.160309e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.113217e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.184246e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.050674e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.528785e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.895577e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.999506e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.460668e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.223501e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.768484e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.135529e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.143318e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.251174e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.239072e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.185158e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.197103e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.188328e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.184180e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.197788e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.187061e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.188126e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.184618e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.186257e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.171125e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.242064e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.174350e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.169662e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.225604e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.166180e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.197737e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.207887e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.188309e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.193028e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.184247e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.194582e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.174385e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.174331e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.263024e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.403215e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.660477e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.254243e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.114014e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.401056e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.218908e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.108041e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.611032e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.754316e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.695002e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.018378e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.897189e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.542124e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.941281e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.311058e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.411539e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.979041e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.319548e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.410120e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.189977e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.147432e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.292462e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.010391e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.900111e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.632801e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.311611e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.063309e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.826204e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.615964e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.267307e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.580989e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.156537e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.065634e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.835997e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.896567e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.472271e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.617740e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.623518e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.263571e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.020831e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.963799e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.518014e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.453654e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.817555e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.537535e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.253290e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.000882e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.217601e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.323351e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.015916e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.328299e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.460862e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.438209e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.081016e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.423977e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.087383e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.286574e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.160908e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.403803e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.613310e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.681881e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.783328e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.016510e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.934559e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.385584e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.207581e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.574330e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.192031e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.759811e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.663766e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.331167e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.604300e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.317183e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.914406e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.728213e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.689857e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.404361e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.425552e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.325915e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.175003e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.992912e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.994774e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.802084e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.093282e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.132800e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.207568e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.848488e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.202932e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.202505e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.395579e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.075039e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.451724e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.370946e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.844279e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.490383e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.824573e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.214966e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.626108e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.091588e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.338483e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.450465e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.301384e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.454505e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.542235e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.104367e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.144620e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.885806e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.355275e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.839152e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.808044e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.716393e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.251634e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.206207e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.883772e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.937805e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.279226e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.911301e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.961381e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.369254e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.742162e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.139272e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.682532e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.395513e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.421102e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.380745e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.735415e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.659509e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.452463e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.547770e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.680929e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.058436e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.234704e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.668140e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.413178e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.236522e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.960143e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.942198e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.342089e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.679308e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.116020e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.785046e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.341274e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.980402e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.933321e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.625499e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.335789e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.636129e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.114318e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.427464e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.141293e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.167041e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.496378e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.003074e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.806135e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.319847e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.415603e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.584663e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.821323e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.010785e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.576342e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.808204e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.440297e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.541606e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.759132e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.546692e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.946913e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.928337e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.564422e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.605362e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.731749e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.052414e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.267616e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.518092e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.205485e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.123846e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.376449e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.940742e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.805198e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.697431e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.180808e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.223726e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.639886e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.224546e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.362254e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.089886e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.339059e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.974766e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.774008e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.642164e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.983468e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.484034e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.957173e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.940354e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.592576e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.992401e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.926931e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.087958e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.049684e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.643671e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.573589e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.709957e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.219578e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.203130e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.802279e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.500801e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.446017e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.756369e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.467888e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.732709e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.739201e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.845487e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.259565e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.410864e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.232563e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.334977e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.359427e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.022128e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.475605e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.796955e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.679448e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.765397e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.061994e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.197800e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.099979e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.686972e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.844630e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.486161e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.080730e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.367370e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.653669e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.554786e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.035596e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.501630e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.287182e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.251780e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.631703e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.233310e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.220727e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.200695e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.938626e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.409023e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.476925e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.393586e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.965857e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.644693e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.968512e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.133598e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.363603e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.821522e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.787736e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.998477e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.716969e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.113686e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.813159e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.444521e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.422451e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.287896e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.145335e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.285942e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.405740e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.192398e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.342110e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.788060e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.803912e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.203361e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.829535e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.721527e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.719206e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.469490e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.028779e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.300355e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.574397e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.746724e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.924811e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.383847e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.197744e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.696685e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.300290e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.635252e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.943788e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.633006e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.067246e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.312298e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.084350e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.780525e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.924600e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.957069e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.913567e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.240441e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.853201e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.771401e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.926039e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.441151e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.044147e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.182105e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.271265e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.226622e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.190295e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.202654e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.215790e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.174515e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.187867e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.224056e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.351931e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.395749e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.169316e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.191357e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.187841e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.176568e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.162109e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.156091e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.155725e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.703378e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.174295e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.291611e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.150920e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.089318e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.050147e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.197523e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.200968e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.193544e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.194563e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.189490e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.197566e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.189974e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.275200e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.368400e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.265214e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.224642e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.007488e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.066531e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.925272e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.642587e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.022280e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.001078e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.280212e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.412015e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.242479e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.582863e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.258807e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.354676e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.552707e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.337773e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.019491e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.915774e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.813418e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.433004e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.469576e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.284055e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.103342e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.253959e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.047881e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.163161e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.665167e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.420285e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.257403e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.297805e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.797017e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.700684e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.859937e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.651053e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.169729e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.633523e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.893615e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.579885e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.535951e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.870233e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.501088e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.590715e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.923118e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.775622e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.654245e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.480047e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.188603e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.926774e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.133322e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.196645e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.129738e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.246182e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.594684e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.581415e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.463041e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.511445e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.451895e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.982256e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.111948e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.385349e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.398457e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.074592e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.571755e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.772482e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.956782e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.309584e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.299363e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.014800e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.300788e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.272237e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.982313e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.961154e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.306599e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.302001e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.288399e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.323901e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.323243e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.304982e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.091729e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.136321e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.474964e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.941121e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.990567e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.265080e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.720063e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.292617e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.651992e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.407653e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.439093e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.861230e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.573812e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.139186e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.225866e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.641285e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.055073e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.863753e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.561477e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.936309e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.759583e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.915189e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.002702e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.111521e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.000269e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.323304e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.396410e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.948075e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.192119e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.813559e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.222644e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.821026e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.646568e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.927281e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.211741e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.746861e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.508193e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.978198e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.235293e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.249614e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.722558e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.058088e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.119654e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.256979e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.082060e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.225605e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.928750e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.801050e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.078556e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.124505e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.652350e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.041504e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.074162e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.561403e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.677931e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.854041e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.292122e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.793923e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.195069e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.625001e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.615755e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.278487e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.052135e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.115161e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.330562e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.540971e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.220153e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.893428e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.288086e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.407156e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.237131e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.368227e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.995222e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.708813e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.544175e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.208067e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.165073e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.732481e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.884228e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.152774e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.691388e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.987982e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.099629e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.820789e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.349159e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.609742e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.583906e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.513667e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.414340e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.042346e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.914769e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.688319e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.229410e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.465847e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.232600e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.280957e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.299793e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.147523e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.971821e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.576171e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.224982e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.393134e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.739055e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.316856e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.652659e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.165168e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.902603e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.645490e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.257559e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.045641e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.205699e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.572444e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.135322e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.064612e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.500648e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.887627e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.628869e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.602357e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.264946e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.223590e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.086863e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.952459e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.647869e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.025124e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.840211e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.417525e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.720233e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.092514e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.236486e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.054804e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.672189e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.259487e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.806955e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.062334e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.039889e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.196896e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.724234e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.384445e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.742637e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.580111e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.852342e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.590701e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.091862e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.284606e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.817328e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.257597e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.913271e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.492317e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.809391e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.651880e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.247593e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.694810e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.801518e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.916036e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.858010e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.414168e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.883239e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.365548e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.423307e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.519884e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.350116e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.964890e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.330715e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.724595e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.771984e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.679502e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.557328e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.002457e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.121918e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.947974e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.519398e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.859013e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.144462e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.392906e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.775127e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.778912e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.830339e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.307642e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.221426e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.124220e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.762216e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.233879e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.073648e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.717350e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.846538e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.024731e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.638617e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.286011e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.894371e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.935071e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.817617e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.937340e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.330453e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.330522e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.208349e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.015738e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.819550e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.068861e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.909847e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.356695e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.711593e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.706486e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.497532e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.347041e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.819039e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.111899e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.113837e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.626673e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.327303e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.702909e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.435384e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.203943e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.111857e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.323451e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.043180e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.512463e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.461807e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.274219e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.416898e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.299134e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.072213e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.057188e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.006136e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.083061e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.642370e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.207001e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.198912e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.239170e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.020236e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.235883e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.108051e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.332293e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.008964e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.261897e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.284181e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.003442e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.495134e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.127134e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.177816e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.447302e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.654928e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.309826e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.295987e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.230643e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.256940e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.483048e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.141273e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.506384e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.929251e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.818208e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.314750e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.145405e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.871794e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.381874e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.926159e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.377315e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.340790e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.281528e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.027632e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.104474e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.069429e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.689652e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.747483e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.750639e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.834919e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.202391e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.091661e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.818928e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.371616e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.264028e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.339350e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.130049e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.328598e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.149550e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.373261e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.751126e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.030174e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.707572e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.206711e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.841892e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.290511e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.766388e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.132169e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.989970e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.675382e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.349883e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.553770e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.546948e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.576982e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.079113e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.008197e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.665111e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.758401e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.683660e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.133021e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.702744e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.359937e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.863381e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.344852e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.716013e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.413006e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.191540e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.790691e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.825689e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.510027e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.444772e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.376851e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.686939e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.415816e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.538884e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.442686e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.036481e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.869383e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.368669e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.289770e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.329730e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.284790e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.326603e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.298787e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.106503e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.129888e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.309335e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.330799e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.475722e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.455568e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.053260e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.044298e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.561022e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.533275e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.395833e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.383673e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.394497e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.948733e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.479848e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.643123e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.047548e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.782203e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.395632e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.283182e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.283532e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.881481e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.795752e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.400999e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.378168e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.266255e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.031238e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.460100e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.484121e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.718356e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.310497e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.185737e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.386908e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.016026e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.023837e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.318173e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.008295e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.566651e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.817377e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.973217e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.188698e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.587943e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.102788e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.259592e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.381066e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.618314e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.185524e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.679210e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.013532e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.821346e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.133027e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.206864e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.452384e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.916017e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.364073e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.074891e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.731437e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.599263e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.308307e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.213826e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.315349e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.703770e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.137488e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.199172e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.777797e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.133353e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.152678e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.031421e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.379430e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.426197e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.931738e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.933144e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.364441e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.024168e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.158146e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.254158e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.464228e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.477431e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.133554e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.155731e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.505972e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.024856e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.887181e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.465373e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.109019e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.262574e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.038590e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.820172e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.875229e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.208147e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.926104e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.963817e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.041089e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.911324e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.014711e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.778778e+00 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.579127e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.962122e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.873938e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.208728e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.016596e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.838494e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.369909e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.923775e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.224105e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.653902e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.712284e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.516846e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.633021e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.589742e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.906475e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.590267e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.171834e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.975630e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.377858e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.122180e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.554035e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.549035e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.509494e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.484949e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.429506e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.037106e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.597686e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.817773e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.773152e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.774921e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.001028e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.607934e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.463793e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.215364e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.396234e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.216870e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.011495e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.286422e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.478130e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.556905e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.448009e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.002249e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.483926e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.608982e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.084859e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.853509e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.319104e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.483260e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.373308e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.724451e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.496896e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.963896e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.006938e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.753638e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.991109e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.266933e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.057595e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.639282e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.441655e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.695748e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.160921e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.957310e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.742423e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.251663e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.645143e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.500529e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.583558e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.727770e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.132527e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.509118e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.086591e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.203304e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.224463e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.969410e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.051536e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.720758e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.355939e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.806474e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.059924e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.439454e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.120068e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.736796e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.966792e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.197267e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.461185e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.076607e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.038728e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.472054e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.850872e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.576782e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.317737e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.831382e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.076156e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.213646e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.671769e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.973757e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.270952e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.205856e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.834773e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.284361e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.368651e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.514436e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.643835e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.196461e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.687369e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.181968e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.192389e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.951190e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.366172e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.088992e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.054715e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.232130e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.166083e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.376489e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.986560e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.980226e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.135138e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.344306e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.156647e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.355733e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.036269e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.249490e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.058991e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.378574e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.155885e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.422620e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.270285e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.196026e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.782507e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.035835e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.588556e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.231811e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.927117e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.962311e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.358194e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.668203e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.059011e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.012076e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.084694e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.011071e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.001006e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.584936e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.078762e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.292273e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.009752e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.443660e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.023853e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.174428e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.212261e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.457390e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.216957e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.915194e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.324314e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.304974e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.412071e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.640953e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.174348e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.877310e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.303288e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.225834e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.325748e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.125880e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.083090e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.317138e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.729131e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.355922e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.275160e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.394189e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.286196e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.291353e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.287379e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.827528e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.929071e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.837094e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.484183e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.545123e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.331348e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.007955e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.074489e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.030937e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.264552e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.762763e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.095427e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.478931e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.996371e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.088715e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.023555e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.288118e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.286985e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.263449e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.377688e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.242420e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.117076e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.962014e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.999298e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.300237e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.229721e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.147022e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.797986e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.863262e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.562907e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.520479e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.783502e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.436210e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.271046e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.043268e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.073209e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.242961e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.685552e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.454514e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.462269e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.422025e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.469520e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.448865e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.517045e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.422657e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.482801e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.494393e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.510152e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.430659e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.505803e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.762625e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.285012e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.919161e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.393337e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.466941e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.503056e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.443168e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.974266e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.609483e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.166120e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.718683e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.705186e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.003624e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.773766e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.194858e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.076238e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.839087e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.082652e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.379735e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.759704e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.443987e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.938946e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.601412e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.117505e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.313916e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.186872e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.855680e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.845089e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.353590e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.533756e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.990031e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.802798e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.025695e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.045570e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.379179e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.028061e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.848341e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.027811e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.195635e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.961570e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.539869e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.428427e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.380094e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.684486e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.820673e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.610854e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.396465e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.175283e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.314217e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.881877e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.671039e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.436494e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.429615e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.892455e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.888972e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.038564e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.738219e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.653358e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.993143e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.095237e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.497300e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.501896e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.349694e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.138717e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.945340e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.759242e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.978704e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.643154e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.003633e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.362163e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.358860e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.804760e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.611365e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.675000e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.763497e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.115038e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.182271e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.053011e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.488049e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.926842e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.077449e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.593046e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.833643e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.667598e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.108420e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.063550e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.865961e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.078522e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.287175e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.884538e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.797038e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.995249e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.548707e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.341139e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.287645e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.173439e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.292763e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.844803e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.713808e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.790089e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.350192e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.193459e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.179278e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.226772e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.313914e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.121698e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.343656e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.850494e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.306630e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.945695e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.864196e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.521760e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.876909e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.649545e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.301790e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.310279e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.342926e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.676270e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.202664e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.982680e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.294525e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.082194e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.386014e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.511148e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.593262e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.421530e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.679690e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.549277e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.667880e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.424520e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.581622e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.548857e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.206549e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.292770e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.368354e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.625168e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.587393e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.839832e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.344300e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.418702e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.745546e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.810252e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.172095e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.613020e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.217580e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.711500e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.242146e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.621105e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.021173e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.920401e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.898894e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.028233e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.678641e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.289899e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.904826e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.722316e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.231025e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.445752e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.944117e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.007148e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.033306e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.144205e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.810088e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.629774e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.811229e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.779037e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.124695e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.327601e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.818924e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.184970e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.228761e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.658148e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.054848e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.227634e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.308285e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.921010e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.019290e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.189050e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.174034e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.776231e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.204050e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.890031e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.247906e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.658324e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.007153e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.979644e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.419209e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.132197e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.181932e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.122158e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.257244e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.462269e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.165363e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.188573e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.264425e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.251286e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.676305e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.451200e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.062557e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.963493e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.542439e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.775130e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.144462e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.068763e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.860931e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.060185e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.162248e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.194353e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.193703e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.368441e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.972384e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.436957e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.632367e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.280267e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.279845e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.500091e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.645118e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.355370e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.441421e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.327786e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.157620e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.105395e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.078387e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.072646e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.000896e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.197079e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.438034e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.465501e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.162020e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.270679e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.301922e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.064250e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.146513e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.918610e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.521192e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.122361e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.060257e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.121651e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.268136e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.044534e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.159337e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.277689e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.275468e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.275519e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.389801e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.380007e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.379702e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.354129e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.217910e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.194330e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.064174e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.042307e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.807596e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.921677e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.629816e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.951301e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.341711e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.031287e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.395861e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.613805e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.251899e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.576104e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.407698e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.084544e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.611994e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.348932e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.792849e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.398898e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.816926e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.168504e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.167328e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.864314e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.732432e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.645180e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.478643e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.271465e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.321189e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.463629e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.501426e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.514333e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.505323e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.418517e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.423286e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.840340e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.382209e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.062668e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.558567e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.446561e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.403587e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.439423e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.330455e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.415215e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.445159e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.476920e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.510970e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.533858e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.561962e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.498935e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.504946e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.535752e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.445205e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.480716e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.681367e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.320858e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.277884e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.190415e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.143632e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.578771e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.108856e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.030364e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.734592e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.373776e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.366066e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.220107e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.084753e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.030593e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.887950e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.120319e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.073385e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.543197e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.551328e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.356864e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.365544e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.259455e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.762772e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.008371e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.459734e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.475153e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.727269e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.749187e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.096893e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.804091e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.243468e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.196780e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.142795e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.620592e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.740769e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.386251e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.074239e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.731166e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.997011e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.570685e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.206296e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.530199e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.100731e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.274306e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.442874e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.107480e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.206919e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.700719e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.412564e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.356210e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.137029e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.498756e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.712345e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.764465e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.694957e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.804515e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.636240e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.544961e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.041779e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.070306e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.858882e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.293350e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.066894e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.316467e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.158453e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.574726e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.074710e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.449209e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.803474e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.942450e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.022098e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.279256e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.981408e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.591789e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.318042e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.153030e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.644975e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.317852e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.295263e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.979104e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.175624e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.263428e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.177325e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.310626e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.326283e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.031425e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.105792e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.610916e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.498471e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.359188e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.214138e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.924653e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.460126e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.454188e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.489619e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.552393e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.199083e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.442079e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.342503e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.003160e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.257505e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.851551e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.180957e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.179221e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.602946e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.877133e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.254765e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.467960e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.215598e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.949158e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.343995e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.024465e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.810420e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.226798e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.451185e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.038902e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.807362e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.559936e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.323219e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.626747e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.100128e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.804697e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.856149e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.129964e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.818275e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.792807e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.557610e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.156531e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.410080e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.886578e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.086274e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.017708e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.718596e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.200455e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.741195e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.251818e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.078124e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.932295e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.692348e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.081992e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.126339e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.413420e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.412339e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.123412e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.953197e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.052877e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.266207e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.354205e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.276068e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.615638e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.773285e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.569769e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.209232e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.447003e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.972735e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.316510e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.696499e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.621128e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.051384e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.953731e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.332761e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.897371e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.024598e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.040032e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.061144e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.863063e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.211372e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.042259e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.008041e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.037705e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.968724e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.201121e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.961494e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.428710e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.115502e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.372730e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.784358e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.661780e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.638377e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.651941e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.988158e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.589988e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.710101e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.348486e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.278825e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.480937e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.442396e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.545534e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.404047e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.061677e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.764937e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.302609e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.580888e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.227749e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.486595e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.766200e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.110279e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.573306e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.496471e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.112794e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.146628e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.428793e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.090452e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.215170e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.182712e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.188284e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.097472e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.980875e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.102283e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.989245e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.018659e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.268093e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.047251e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.164505e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.163053e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.162928e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.160899e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.149898e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.274998e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.273376e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.146060e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.043903e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.304246e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.112308e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.454845e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.014477e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.416879e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.957803e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.224555e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.830458e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.358789e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.206543e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.399256e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.408051e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.405757e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.152010e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.450987e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.733732e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.124087e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.036441e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.257679e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.193048e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.048633e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.114470e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.551194e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.622429e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.215656e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.151772e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.526502e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.378797e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.440614e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.438688e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.490134e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.469512e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.539222e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.573487e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.501353e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.431453e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.504053e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.484944e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.484540e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.502803e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.535931e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.562081e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.564387e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.526811e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.209911e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.455048e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.787650e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.157651e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.551280e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.382197e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.198715e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.640247e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.695834e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.230196e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.533513e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.219088e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.977953e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.187944e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.655878e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.200543e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.036411e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.353293e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.014760e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.152486e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.132397e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.723432e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.945146e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.872826e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.100318e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.748885e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.926196e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.152220e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.080682e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.973850e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.655655e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.852483e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.143468e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.589585e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.705358e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.403643e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.545088e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.917088e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.722879e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.245754e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.198761e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.379115e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.906930e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.838502e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.234836e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.246484e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.036085e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.973707e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.504169e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.876981e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.787222e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.925180e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.758545e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.032796e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.015722e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.665359e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.401168e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.486755e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.707612e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.513213e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.392378e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.209307e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.423153e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.458723e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.728744e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.771907e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.088238e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.442403e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.035741e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.010529e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.496896e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.322256e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.609162e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.197293e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.274085e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.136673e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.818567e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.749381e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.323600e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.786108e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.524083e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.049332e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.399971e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.049399e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.294475e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.479113e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.127047e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.002597e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.775908e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.969781e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.882680e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.377007e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.271374e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.114153e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.609689e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.382991e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.221911e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.340687e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.606605e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.818199e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.339847e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.973113e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.050704e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.281968e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.290195e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.938869e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.149080e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.351457e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.722881e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.025991e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.786389e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.660799e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.315328e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.334725e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.827919e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.849096e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.826571e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.793186e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.628854e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.839546e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.824585e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.676958e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.007087e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.630860e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.965198e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.688852e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.106985e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.456392e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.540848e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.912015e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.078872e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.781665e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.933217e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.407569e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.994498e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.224611e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.553114e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.139933e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.093714e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.948894e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.606897e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.218962e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.591657e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.420970e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.597329e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.216481e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.601052e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.548076e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.127472e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.838240e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.173730e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.673415e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.308769e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.737121e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.386890e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.786926e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.640675e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.523348e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.110859e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.159535e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.318779e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.011291e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.892798e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.236665e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.172599e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.935059e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.318123e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.900942e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.617219e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.713425e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.469863e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.709507e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.620576e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.310928e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.940775e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.015379e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.934804e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.359326e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.164968e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.186935e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.485752e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.262284e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.606551e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.637411e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.011745e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.068714e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.010961e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.103623e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.285609e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.149253e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.354017e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.365928e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.230927e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.097185e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.472446e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.268768e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.137488e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.215893e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.080323e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.167861e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.184415e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.420812e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.167511e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.163483e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.046711e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.164017e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.161777e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.159159e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.159064e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.160523e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.149460e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.036391e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.419640e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.037369e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.044016e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.123978e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.548781e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.341508e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.599829e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.449093e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.715622e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.430699e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.426716e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.481686e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.997215e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.333296e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.965599e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.008585e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.425339e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.509134e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.654269e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.479092e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.984559e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.864174e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.204342e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.591088e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.672698e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.232937e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.450641e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.576567e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.531288e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.558032e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.521999e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.542612e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.482631e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.621958e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.437852e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.519748e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.544592e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.520698e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.141945e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.164649e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.072232e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.099965e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.994340e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.264267e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.267238e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.643667e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.784072e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.856276e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.881233e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.622501e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.613578e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.666385e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.988798e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.320867e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.122386e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.152329e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.914317e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.229990e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.070584e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.675586e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.130930e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.333975e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.946912e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.804717e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.729043e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.587686e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.572439e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.369181e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.327604e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.916971e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.160163e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.660715e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.166292e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.224310e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.694614e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.992394e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.146078e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.814827e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.373836e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.538078e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.512414e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.296333e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.809245e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.662515e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.828991e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.272848e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.288939e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.353623e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.212141e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.703319e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.550673e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.355449e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.522959e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.622598e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.958293e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.364171e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.372864e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.607628e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.404412e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.616602e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.336058e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.703146e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.044375e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.717607e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.141932e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.820715e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.741891e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.538297e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.965540e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.190306e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.026039e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.130987e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.214414e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.000386e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.301444e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.465094e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.147939e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.645597e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.802503e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.002141e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.694419e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.136531e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.850783e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.282860e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.977080e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.110856e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.680566e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.336185e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.609012e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.388618e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.371155e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.935954e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.655843e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.618525e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.873326e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.388784e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.638787e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.843183e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.503878e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.628875e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.598187e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.476021e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.990445e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.724593e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.336871e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.081020e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.907135e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.870640e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.565593e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.119356e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.898798e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.889642e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.532197e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.334779e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.357648e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.025330e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.517643e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.059752e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.953287e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.402066e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.854014e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.401351e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.833073e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.903847e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.924775e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.374413e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.636200e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.580694e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.304402e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.733581e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.383943e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.485048e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.345187e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.864969e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.684943e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.887067e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.181912e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.011909e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.228791e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.630736e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.736642e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.436335e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.916064e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.617722e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.038959e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.119349e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.672491e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.834565e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.991079e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.385587e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.879457e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.351854e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.134175e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.170891e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.828675e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.786047e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.467099e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.409637e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.969480e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.084925e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.411514e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.901623e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.731782e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.456916e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.539738e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.674205e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.139854e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.508272e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.433149e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.485705e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.254626e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.648879e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.051789e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.509898e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.981336e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.303542e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.285470e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.153899e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.444215e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.842872e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.321532e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.409034e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.655001e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.074757e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.324657e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.942416e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.043823e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.048066e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.400792e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.309422e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.335191e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.165119e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.297846e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.164805e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.055702e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.055498e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.381796e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.043361e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.368674e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.049627e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.071136e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.334384e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.331749e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.366874e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.859434e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.591827e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.718622e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.269949e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.032653e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.058274e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.377058e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.193441e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.454059e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.892464e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.410151e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.731077e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.744454e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.245149e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.790791e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.859360e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.038306e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.133789e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.941921e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.600747e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.621578e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.436215e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.418868e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.445925e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.420368e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.455494e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.451208e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.535570e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.190895e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.238677e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.653461e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.241655e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.970324e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.021340e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.446583e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.207015e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.423929e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.317853e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.466292e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.060637e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.113865e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.020968e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.224691e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.601542e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.729985e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.485680e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.467678e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.778070e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.239506e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.235117e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.100279e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.732913e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.899140e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.404455e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.014646e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.824866e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.727273e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.267603e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.971812e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.273545e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.605303e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.329992e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.497027e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.798218e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.987783e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.669144e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.676853e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.911877e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.354908e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.370078e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.767953e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.615163e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.669350e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.286938e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.623285e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.050828e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.092250e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.057483e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.929700e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.679719e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.231144e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.496003e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.691996e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.630701e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.683434e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.973442e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.566158e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.051701e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.512077e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.663715e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.766790e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.301254e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.231973e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.858984e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.573936e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.160908e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.621552e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.237771e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.160573e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.710064e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.500166e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.842551e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.469950e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.699448e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.114446e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.624840e+01 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.417936e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.776692e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.718147e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.905600e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.849780e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.557377e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.473314e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.419035e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.833078e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.275466e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.159946e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.663333e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.960644e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.624893e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.854032e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.708377e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.017237e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.439736e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.886687e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.725738e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.076190e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.050634e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.195698e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.497184e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.988122e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.237678e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.279171e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.265545e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.906699e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.995420e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.572720e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.890149e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.960032e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.077813e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.417145e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.489046e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.053670e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.213376e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.981337e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.703382e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.820278e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.802201e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.814345e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.599298e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.010382e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.445309e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.231734e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.673484e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.601537e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.086334e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.456528e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.032993e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.788305e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.795616e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.279065e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.710333e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.569952e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.028216e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.127640e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.094944e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.126442e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.170661e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.367735e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.047686e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.778720e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.876942e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.093838e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.994007e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.056908e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.462688e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.437465e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.421073e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.513833e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.171196e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.054407e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.629025e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.107178e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.151818e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.205749e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.587141e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.860431e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.586031e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.250690e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.429578e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.338987e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.249681e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.183817e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.242645e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.368491e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.332255e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.310561e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.309943e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.049808e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.390297e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.021182e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.391065e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.451325e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.369538e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.448662e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.465867e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.910694e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.810985e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.899184e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.750982e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.175818e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.705374e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.996321e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.985372e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.050453e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.084930e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.492525e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.248023e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.255276e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.271025e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.565368e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.215840e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.156630e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.210643e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.188731e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.231773e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.230993e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.273545e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.222097e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.268905e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.815603e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.535199e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.716556e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.588002e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.562500e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.994440e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.951724e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.281516e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.314957e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.563607e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.317458e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.840551e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.626070e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.233512e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.207243e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.488677e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.624659e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.040403e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.826745e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.854360e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.050222e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.181297e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.879255e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.017726e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.091911e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.549751e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.543728e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.791160e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.316208e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.159190e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.676043e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.637670e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.877774e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.184143e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.636784e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.733100e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.543240e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.393668e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.155820e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.039776e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.980440e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.603315e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.780560e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.346935e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.021293e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.750700e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.926998e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.075771e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.147337e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.243951e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.093199e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.752372e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.859966e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.230820e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.531608e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.026036e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.323772e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.919580e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.579042e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.124636e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.306016e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.323248e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.565816e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.256639e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.464467e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.696164e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.936677e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.213410e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.662608e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.861328e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.359691e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.325463e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.465864e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.466751e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.729069e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.608885e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.876683e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.555765e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.448733e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.938831e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.847923e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.803199e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.807471e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.900961e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.489642e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.267721e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.710122e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.444351e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.865102e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.551871e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.631966e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.852476e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.706672e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.485205e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.956609e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.010752e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.109782e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.655061e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.351038e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.434292e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.989826e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.544374e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.385283e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.343751e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.006567e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.511455e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.982372e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.392096e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.922061e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.362096e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.665981e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.343849e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.556523e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.900566e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.849234e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.511527e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.602329e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.073636e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.266154e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.042228e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.015611e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.059512e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.161562e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.448060e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.582690e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.286078e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.777925e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.108284e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.753506e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.332444e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.795012e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.465129e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.505041e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.110782e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.266488e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.393875e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.513275e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.633523e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.767809e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.227306e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.025487e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.003419e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.856580e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.019758e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.505346e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.034057e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.866158e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.411447e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.262049e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.183896e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.682832e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.144508e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.053098e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.663141e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.340056e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.137232e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.065209e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.053970e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.302784e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.035960e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.449145e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.451543e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.451369e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.468135e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.463827e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.454871e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.380741e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.594414e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.146544e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.108164e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.149858e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.795233e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.108362e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.532129e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.860239e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.642768e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.583232e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.857192e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.010386e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.063263e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.479843e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.295197e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.172049e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.980923e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.168364e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.617464e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.318545e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.205226e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.211054e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.612186e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.528999e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.954932e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.366412e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.558348e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.550019e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.686933e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.064986e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.154584e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.136335e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.007931e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.878344e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.795197e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.472719e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.423257e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.450253e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.663204e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.645350e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.384599e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.887830e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.511835e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.812806e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.667904e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.053229e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.206069e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.318919e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.051137e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.720922e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.319091e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.997674e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.699228e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.950869e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.478634e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.422392e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.285837e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.045555e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.562347e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.633145e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.930137e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.661804e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.032784e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.259390e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.189427e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.461542e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.483557e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.586923e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.501858e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.411827e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.627351e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.543099e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.873321e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.317535e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.456840e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.216855e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.007642e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.253547e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.478194e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.574992e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.167643e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.364469e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.175828e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.125720e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.964448e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.005614e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.861748e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.832589e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.382904e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.907407e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.582407e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.170310e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.188488e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.349667e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.037663e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.628143e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.855010e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.226227e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.089869e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.925651e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.642919e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.508150e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.684320e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.505163e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.605089e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.734509e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.470192e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.044671e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.523605e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.287705e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.446601e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.227552e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.909251e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.822366e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.649707e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.730796e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.772021e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.383572e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.369666e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.893433e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.444455e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.946235e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.670907e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.819586e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.168855e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.562904e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.481500e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.198205e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.780827e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.072623e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.487676e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.239465e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.352147e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.381882e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.507347e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.841407e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.012904e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.088735e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.142504e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.909393e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.721501e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.312859e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.499996e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.295640e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.758955e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.677630e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.324223e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.913630e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.220735e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.119627e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.914722e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.865128e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.894090e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.183593e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.048526e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.507530e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.514669e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.891799e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.511081e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.074890e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.495744e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.694187e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.090326e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.358362e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.078282e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.196833e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.321689e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.282789e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.610572e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.447797e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.452842e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.111323e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.043413e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.494136e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.726005e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.002012e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.050830e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.351794e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.517988e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.657341e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.911234e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.936486e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.823384e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.858814e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.385895e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.819814e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.886408e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.769746e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.027619e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.026404e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.891767e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.438228e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.317591e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.018962e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.115300e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.946011e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.621330e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.853971e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.117503e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.278354e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.220869e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.455330e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.735047e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.474709e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.757807e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.053129e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.561488e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.511925e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.923086e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.020869e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.989683e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.323374e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.229047e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.256102e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.414113e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.705862e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.105344e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.927842e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.342275e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.230255e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.536396e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.778088e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.237864e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.047452e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.414119e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.026585e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.964135e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.153085e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.138709e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.749791e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.502674e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.258250e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.858484e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.718068e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.844543e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.704669e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.949281e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.145996e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.338846e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.154881e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.783351e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.054140e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.455813e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.147417e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.311225e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.291964e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.475087e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.809728e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.007843e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.651163e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 2.908087e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.602569e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.764282e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.811949e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.145825e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.125041e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.242700e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.528938e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.316397e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.524686e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.314027e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.788524e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.762424e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.106448e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.230443e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.629914e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.915869e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.839306e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.920620e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.972185e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.586079e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.154323e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.975534e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.424696e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.074346e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.679522e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.001315e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.180887e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.968684e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.208231e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.944024e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.424239e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.623654e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.796753e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.522672e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.632087e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.024970e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.212087e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.645834e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.791462e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.830721e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.245432e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.634869e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.584850e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.127025e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.701007e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.385794e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.893106e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.799083e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.055837e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.801347e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.740813e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.373302e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.342597e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.028199e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.194531e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.447266e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.204338e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.433583e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.105726e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.007496e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.402703e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.151711e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.631495e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.442737e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.503497e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.999665e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.464862e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.371607e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.058538e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.322343e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.544603e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.611340e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.665694e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.949236e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.799186e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.457524e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.104555e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.063814e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.932455e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.002426e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.817450e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.321649e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.415833e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.208530e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.406958e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.495790e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.689932e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.890160e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.056715e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.637270e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.266842e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.155481e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.980066e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.362457e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.086981e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.349752e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.591943e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.339985e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.811510e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.075700e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.220968e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.425452e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.673739e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.910939e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.827294e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.455765e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.352216e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.071765e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.788981e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.029514e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.315530e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.165159e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.160378e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.467947e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.164442e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.910943e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.518172e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.350729e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.372701e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.062342e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.005397e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.574794e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.550017e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.251425e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.472559e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.279454e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.154913e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.669793e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.055377e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.483312e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.223880e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.295760e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.501480e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.236504e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.882716e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.151671e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.494591e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.838691e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.066719e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.960910e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 7.361890e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 9.130334e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 1.116272e+03 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.923689e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.104173e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.664025e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 8.317551e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.345112e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.654912e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.947979e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.267991e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 3.424314e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.542207e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.426252e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 4.932365e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 5.942046e+02 | Trianguation | 7,755,535 |
| 1,251.902 | 1,578.183 | 6.542800e+02 | Trianguation | 7,755,535 |
| 2,521.817 | 2,886.871 | 3.946585e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.751049e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.342178e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.050553e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.671827e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.005379e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.495280e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.525326e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.760293e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.532234e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.117262e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.030822e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.241647e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.388199e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.269755e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.220424e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.268994e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.365441e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.911263e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.253123e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.756593e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.804591e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.268528e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.688045e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.820823e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.364114e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.825187e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.200016e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.210265e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.757394e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.349302e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.267425e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.347866e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.533866e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.532885e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.242198e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.506541e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.813783e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.401881e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.737179e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.554886e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.022948e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.655018e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.193847e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.388250e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.459496e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.839050e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.521769e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.263108e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.481210e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.371078e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.606774e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.207769e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.206480e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.131826e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.506166e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.025306e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.125205e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.257491e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.659152e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.224003e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.168625e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.816542e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.652368e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.000830e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.197902e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.893738e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.567418e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.647154e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.948039e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.737733e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.481431e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.759567e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.279303e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.198839e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.660483e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.041345e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.430765e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.380229e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.072128e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.377064e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.119159e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.549689e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.672252e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.836815e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.785635e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.959572e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.799314e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.818817e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.894276e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.375837e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.153965e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.806791e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.260448e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.636959e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.546113e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.736061e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.168328e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.620763e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.267876e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.757050e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.310942e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.175817e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.533345e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.075575e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.730035e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.186092e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.203030e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.795234e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.266524e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.760472e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.102719e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.863957e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.573585e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.393838e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.757728e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.410959e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.021296e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.988138e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.023490e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.972927e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.623260e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.652213e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.588477e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.316697e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.227926e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.366972e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.552080e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.866282e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.654030e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.340523e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.182071e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.248436e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.599146e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.650093e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.744356e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.854217e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.735228e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.075874e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.707141e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.181315e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.646068e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.793961e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.704622e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.495012e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.125514e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.066558e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.163955e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.198452e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.320560e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.555238e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.680525e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.726399e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.286584e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.142962e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.815807e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.723200e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.757962e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.851948e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.068506e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.882056e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.830969e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.877273e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.982685e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.538880e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.201541e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.709518e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.903633e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.697491e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.821994e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.107407e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.416696e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.024751e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.131985e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.632231e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.046594e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.893326e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.116642e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.693746e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.399761e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.384908e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.808823e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.306625e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.608098e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.907404e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.361141e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.760814e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.596584e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.983789e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.156991e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.602221e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.741521e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.199465e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.881005e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.107247e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.606694e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.201868e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.130603e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.246338e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.581407e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.677508e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.858965e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.289635e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.241660e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.971168e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.315631e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.505639e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.721541e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.038345e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.879460e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.293522e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.952399e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.112540e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.522842e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.393625e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.158159e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.112034e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.416355e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.217514e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.706860e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.865057e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.189117e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.119945e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.912939e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.537597e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.236317e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.861244e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.353494e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.366073e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.417170e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.697350e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.143887e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.380401e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.090814e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.969695e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.581235e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.163400e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.741747e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.858030e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.914290e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.384754e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.463688e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.211312e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.064738e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.961295e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.374795e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.270615e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.248482e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.104528e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.006035e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.209915e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.179493e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.901747e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.947635e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.842521e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.405750e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.360194e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.797426e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.659004e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.134713e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.048703e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.359043e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.717094e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.017139e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.366863e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.251853e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.529829e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.714704e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.227425e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.653099e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.037031e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.032687e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.800741e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.614943e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.947053e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.636380e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.734267e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.749774e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.249846e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.233489e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.657309e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.217832e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.890663e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.518941e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.942432e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.942484e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.863673e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.091013e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.090043e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.345447e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.339763e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.935875e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.125522e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.074679e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.843473e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.455209e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.512169e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.473081e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.595187e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.108614e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.138026e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.856586e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.941856e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.472456e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.073482e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.635982e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.426963e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.195126e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.168606e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.683794e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.716927e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.906631e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.618002e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.196710e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.441461e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.269441e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.854487e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.861776e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.389927e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.091138e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.415468e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.764069e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.209135e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.099750e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.460065e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.130786e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.197935e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.219575e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.817368e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.301721e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.640397e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.841107e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.060839e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.004473e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.664823e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.273752e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.575320e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.675784e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.045563e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.661638e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.106780e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.027112e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.473233e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.136168e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.052864e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.379968e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.031075e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.022998e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.376479e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.119894e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.361272e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.087740e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.504759e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.313784e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.231452e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.583837e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.833784e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.527030e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.715889e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.242867e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.678559e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.089342e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.731820e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.115757e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.583954e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.703344e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.897368e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.415995e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.150870e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.723470e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.627857e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.991250e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.725771e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.146978e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.346213e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.900406e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.045602e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.819241e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.429635e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.937038e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.888432e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.037732e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.721788e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.005219e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.312277e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.382173e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.489798e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.545404e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.569079e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.806466e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.087711e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.307886e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.328280e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.413556e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.215035e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.283278e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.170692e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.638299e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.175754e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.318090e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.515092e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.842257e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.345129e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.652614e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.918749e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.251129e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.866412e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.914858e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.467919e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.935967e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.474035e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.909229e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.325130e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.251252e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.872750e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.917362e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.917492e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.223209e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.530123e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.074206e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.418637e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.905718e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.746700e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.878028e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.485385e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.597934e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.964343e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.656890e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.491874e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.686802e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.329294e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.620185e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.579896e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.849192e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.372109e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.572722e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.176798e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.416018e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.950306e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.053674e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.160139e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.182795e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.835747e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.377140e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.583578e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.980229e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.395352e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.107923e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.652582e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.320616e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.710768e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.211191e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.372720e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.532251e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.155045e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.702103e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.600294e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.384823e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.406598e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.226657e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.973995e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.765447e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.241031e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.799065e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.907883e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.526996e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.734339e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.688042e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.061500e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.740021e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.259969e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.399137e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.660176e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.412140e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.273336e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.721316e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.264259e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.649179e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.118685e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.741857e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.355727e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.209166e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.482037e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.991975e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.324855e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.000250e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.238450e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.409318e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.565838e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.708418e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.421961e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.505872e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.808171e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.696503e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.570325e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.358377e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.470127e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.947404e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.340032e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.334752e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.404838e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.455584e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.583694e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.892579e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.899955e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.389336e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.034747e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.490356e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.646254e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.383431e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.729053e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.427705e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.941288e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.312030e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.199881e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.392400e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.186739e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.807488e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.364602e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.094457e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.331855e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.920468e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.209888e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.750908e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.871036e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.417837e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.340699e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.999265e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.572656e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.390403e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.400437e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.593506e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.423094e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.507135e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.090847e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.062230e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.501594e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.350039e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.499742e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.749959e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.558201e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.403180e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.466150e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.111424e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.518500e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.310999e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.794635e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.128081e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.399203e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.658762e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.693062e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.937274e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.522889e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.447634e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.946871e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.341595e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.113436e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.022440e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.934087e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.239741e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.134688e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.384117e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.385027e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.285841e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.282571e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.364176e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.684300e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.622772e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.415295e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.357560e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.363528e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.435260e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.000596e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.113083e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.481230e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.756715e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.467554e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.482125e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.614192e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.281238e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.615856e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.170221e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.301620e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.833629e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.023587e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.522493e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.367754e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.947741e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.912007e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.473984e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.147563e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.016037e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.797411e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.254873e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.695170e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.533562e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.256774e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.186798e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.310195e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.879528e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.386665e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.983397e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.140184e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.302868e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.589042e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.574169e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.575379e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.349441e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.673526e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.908898e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.333498e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.927631e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.464874e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.798327e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.491161e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.600471e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.183736e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.322165e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.512416e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.492558e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.856122e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.602673e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.964199e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.787216e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.655506e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.806012e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.143795e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.211902e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.317208e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.342093e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.748176e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.747302e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.952126e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.823435e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.915410e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.737948e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.402711e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.158849e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.866481e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.335555e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.256899e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.313262e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.424043e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.784518e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.434841e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.264519e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.324344e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.867122e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.013985e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.387724e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.860230e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.037923e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.382078e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.458150e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.656897e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.107691e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.702563e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.691898e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.737834e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.595289e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.712812e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.487411e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.169382e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.211225e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.639032e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.363845e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.034186e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.420014e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.599561e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.496206e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.372703e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.333922e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.233724e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.614275e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.592531e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.233855e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.528648e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.422578e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.583166e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.581568e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.596911e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.368774e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.312838e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.377555e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.129341e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.308361e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.760518e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.388101e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.471078e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.048405e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.233798e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.722639e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.603486e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.155516e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.732518e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.258946e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.322554e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.241809e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.254332e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.581371e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.495570e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.899666e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.050146e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.168532e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.302691e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.569415e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.805168e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.647293e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.211584e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.950954e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.443774e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.295799e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.732777e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.678067e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.224820e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.841957e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.353125e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.144530e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.280670e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.574032e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.118318e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.357351e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.054345e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.599109e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.865274e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.306957e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.776923e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.272496e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.933187e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.231841e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.265451e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.217312e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.535094e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.157189e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.675695e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.369747e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.390317e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.471861e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.185269e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.720559e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.998251e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.234313e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.297982e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.816125e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.634296e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.933590e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.972281e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.535189e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.691414e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.504380e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.979959e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.523821e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.629825e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.392274e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.343681e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.819226e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.659447e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.508046e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.041967e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.300668e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.067526e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.109210e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.439752e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.467576e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.774329e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.571111e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.194376e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.922960e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.602523e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.518756e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.591320e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.481409e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.666146e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.902054e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.485586e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.187265e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.940917e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.726795e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.087676e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.898909e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.347233e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.110702e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.494963e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.332503e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.456617e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.602255e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.668252e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.162271e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.210923e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.758846e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.638720e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.065227e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.460979e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.318313e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.122514e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.845248e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.313379e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.653948e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.539191e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.921953e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.848724e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.484926e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.612588e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.378519e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.183588e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.435486e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.698821e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.221687e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.396872e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.358215e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.588162e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.400545e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.950000e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.189574e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.997176e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.169748e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.338994e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.076166e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.521605e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.113132e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.553899e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.822428e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.490970e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.981304e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.426241e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.222591e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.490778e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.063769e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.834575e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.824316e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.764208e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.423544e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.414642e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.749091e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.550981e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.838114e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.219857e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.235931e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.527650e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.081668e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.931553e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.879229e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.233701e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.511865e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.898058e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.151422e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.500920e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.679074e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.603499e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.417369e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.518823e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.048800e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.217795e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.369141e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.426644e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.245590e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.511881e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.637471e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.634007e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.195836e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.420785e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.600516e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.312372e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.532876e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.935832e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.072273e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.065990e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.647449e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.773640e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.526802e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.215663e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.500406e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.737776e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.911239e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.686470e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.706611e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.609207e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.641847e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.496478e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.861832e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.425785e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.030551e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.153356e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.834661e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.724786e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.147943e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.055743e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.411651e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.624269e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.321474e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.298764e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.618659e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.047607e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.059922e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.770799e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.128928e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.297221e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.464736e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.615527e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.427321e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.784299e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.574872e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.382526e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.765110e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.035833e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.249019e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.610868e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.866227e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.331511e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.528366e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.589967e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.037824e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.766517e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.268359e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.480324e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.907199e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.197279e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.054211e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.570418e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.567576e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.024293e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.951156e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.376311e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.752544e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.971793e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.251700e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.199967e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.686009e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.118301e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.248393e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.891681e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.201453e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.879646e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.437361e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.398749e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.906821e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.553814e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.344380e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.071434e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.219622e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.940583e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.132208e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.696083e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.213541e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.493119e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.344284e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.211926e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.735572e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.061230e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.214652e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.646069e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.488019e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.279941e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.364142e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.676848e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.715713e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.028056e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.391636e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.654650e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.602217e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.999731e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.096507e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.361889e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.184355e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.052604e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.810680e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.066022e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.238322e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.445433e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.661628e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.804278e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.043314e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.543500e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.277234e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.204325e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.875804e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.457399e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.026410e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.967136e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.273555e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.748641e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.478312e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.822464e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.225466e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.511380e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.432657e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.787095e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.639686e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.427203e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.596988e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.094690e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.896568e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.792258e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.567945e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.241830e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.718976e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.667747e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.220145e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.683704e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.286028e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.985274e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.724586e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.555572e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.778250e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.774573e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.870132e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.866498e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.467126e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.491949e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.405744e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.625917e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.528880e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.608925e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.239532e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.328649e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.107635e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.227215e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.620588e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.719654e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.735456e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.593022e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.542181e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.479749e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.729427e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.459822e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.360798e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.426165e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.489614e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.803787e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.074817e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.755129e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.675947e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.382481e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.741422e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.042034e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.794880e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.151516e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.688338e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.424829e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.472669e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.129115e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.095596e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.218897e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.676028e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.518843e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.803025e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.527098e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.768845e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.839615e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.468511e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.357057e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.259491e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.430537e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.454664e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.191928e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.477936e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.149174e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.110012e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.377827e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.871426e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.709257e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.773981e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.651726e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.306938e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.399041e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.246882e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.135694e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.350183e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.812506e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.391410e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.546138e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.451985e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.721357e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.269495e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.717417e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.387908e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.088908e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.900950e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.762999e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.018427e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.859012e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.375581e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.649898e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.470746e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.647532e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.074436e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.810180e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.545249e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.486325e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.467588e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.649897e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.432931e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.676010e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.427686e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.541587e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.562362e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.617647e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.136528e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.267375e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.134206e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.467171e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.119035e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.779491e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.238616e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.752775e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.134886e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.767147e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.160876e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.363408e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.596909e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.266476e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.320787e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.395499e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.251393e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.797078e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.063254e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.197003e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.412374e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.616312e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.311581e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.292313e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.233278e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.577489e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.587682e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.130375e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.563816e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.087633e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.006696e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.113144e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.847756e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.575482e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.282633e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.499709e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.018565e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.712139e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.714531e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.478329e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.759075e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.856002e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.690325e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.150757e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.627782e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.271006e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.411922e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.392683e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.002949e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.423609e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.788925e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.494743e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.540033e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.610290e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.622278e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.334771e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.367172e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.536130e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.292473e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.461279e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.872098e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.558714e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.679197e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.190456e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.123350e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.221037e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.590445e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.660153e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.511502e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.915675e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.672269e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.568997e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.591375e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.491029e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.376303e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.403528e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.263549e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.279446e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.368951e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.473175e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.035749e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.716442e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.135990e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.843148e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.688119e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.703332e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.271173e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.086250e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.466127e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.501039e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.952400e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.794428e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.389084e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.100543e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.760610e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.181598e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.545448e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.805384e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.398880e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.012179e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.574744e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.999572e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.482328e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.216242e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.198682e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.431848e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.151954e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.611751e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.417122e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.864205e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.589059e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.271138e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.093967e+04 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.491828e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.359033e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.502290e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.836204e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.370135e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.708254e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.230988e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.978414e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.656155e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.168776e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.107773e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.499493e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.220577e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.747601e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.380411e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.191266e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.598884e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.379513e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.717497e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.697362e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.456459e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.402874e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.962548e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.509576e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.480320e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.429243e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.375619e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.390521e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.975322e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.274008e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.365173e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.371999e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.217248e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.028725e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.393332e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.288284e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.406204e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.411284e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.870540e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.254312e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.873127e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.304034e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.975375e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.561780e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.615902e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.713143e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.205257e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.812928e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.771857e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.405470e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.170189e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.506123e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.931708e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.147269e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.382914e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.138062e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.456881e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.028591e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.392132e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.732034e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.532607e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.655041e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.644657e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.672022e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.744699e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.790798e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.756845e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.411653e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.208488e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.837443e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.226255e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.270837e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.114047e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.301037e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.548428e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.487811e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.790582e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.592320e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.614327e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.421525e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.274694e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.915624e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.267867e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.587713e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.335013e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.743244e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.844253e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.470815e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.055644e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.066686e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.117909e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.610511e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.419839e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.554008e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.301180e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.285891e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.716166e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.871258e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.684098e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.871693e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.442204e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.659965e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.579492e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.405564e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.920904e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.430596e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.502747e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.525497e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.826828e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.396251e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.963228e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.192518e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.503800e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.032182e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.604663e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.739156e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.606678e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.521214e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.233499e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.680638e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.471692e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.641993e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.092008e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.531516e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.148874e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.321745e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.289484e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.850665e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.709689e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.305421e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.401110e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.476783e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.264473e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.721740e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.541307e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.407336e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.516429e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.183199e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.736330e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.725832e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.798665e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.701106e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.830352e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.659378e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.866159e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.685087e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.590024e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.368288e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.754725e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.967771e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.015108e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.016181e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.351507e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.614964e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.614000e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.507436e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.835736e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.430234e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.081948e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.796545e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.421004e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.288134e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.625014e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.884118e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.667252e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.671067e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.191300e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.457356e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.359687e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.735618e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.859801e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.886220e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.820163e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.550808e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.673685e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.321793e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.858111e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.040193e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.344537e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.753960e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.644264e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.463307e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.182261e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.739070e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.833803e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.746872e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.706734e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.425900e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.397396e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.013412e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.708840e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.125066e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.806878e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.175835e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.005756e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.278551e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.706612e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.546791e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.728221e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.592660e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.712014e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.418379e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.195537e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.327294e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.550284e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.782374e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.342635e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.106457e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.712417e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.201878e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.848385e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.616290e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.566025e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.951506e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.163336e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.714405e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.936508e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.355748e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.246936e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.766747e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.290814e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.001443e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.706109e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.360487e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.577742e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.509546e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.594976e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.725903e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.570328e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.061649e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.779724e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.988485e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.636488e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.767019e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.632431e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.433963e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.448243e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.910085e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.948713e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.600961e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.245014e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.717561e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.126922e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.731998e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.417914e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.634352e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.569647e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.823166e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.194242e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.567974e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.032881e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.441689e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.189100e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.979703e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.116572e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.186392e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.593119e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.923271e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.736524e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.239234e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.686062e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.750158e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.706402e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.539605e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.077299e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.023851e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.558194e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.077439e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.817722e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.240193e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.194555e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.960901e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.886312e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.768980e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.297199e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.194794e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.749892e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.447108e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.613837e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.706399e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.698512e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.399805e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.301575e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.387614e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.475133e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.652806e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.013998e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.102036e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.553912e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.163499e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.123093e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.574461e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.765516e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.725202e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.852074e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.431006e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.023398e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.514071e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.099493e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.665448e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.558360e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.338779e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.016238e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.563925e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.392681e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.336023e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.704198e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.566816e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.972353e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.102308e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.910566e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.303895e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.101947e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.832861e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.853983e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.671969e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.108029e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.387171e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.104431e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.247315e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.012001e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.690111e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.632817e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.454861e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.272313e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.267388e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.353386e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.081289e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.345771e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.570438e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.649209e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.710082e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.704725e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.688574e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.910825e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.313255e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.561002e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.018390e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.869564e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.052652e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.508766e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.803560e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.228003e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.799374e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.387851e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.846737e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.269139e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.447370e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.341101e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.654994e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.468608e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.365274e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.005574e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.779058e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.361405e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.545449e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.905792e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.328270e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.482541e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.027071e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.291411e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.503934e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.774250e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.182914e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.555143e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.316695e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.230070e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.875567e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.224500e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.630781e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.750711e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.959582e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.127281e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.525009e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.600530e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.669104e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.496481e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.513979e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.467333e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.610911e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.425774e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.385418e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.308761e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.905814e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.643632e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.788030e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.496299e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.999395e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.655898e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.272173e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.836459e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.765833e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.499592e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.901422e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.382796e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.307417e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.011005e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.340311e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.238264e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.336815e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.085373e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.709830e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.544950e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.198345e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.277547e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.732113e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.675616e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.872491e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.856670e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.334228e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.475599e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.404229e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.320213e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.003385e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.258260e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.780655e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.746733e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.471270e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.555080e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.311371e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.324207e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.718557e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.627112e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.255060e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.067331e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.045438e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.348910e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.688873e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.317283e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.099316e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.836486e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.749365e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.328673e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.751153e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.523430e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.143734e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.737429e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.831698e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.512580e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.530111e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.391719e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.249979e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.485222e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.183854e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.094055e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.750704e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.035789e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.874688e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.608369e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.885612e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.251531e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.663878e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.832399e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.172746e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.602353e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.995786e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.919899e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.715532e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.261288e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.365029e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.727822e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.101336e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.639145e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.133010e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.287281e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.688470e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.913355e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.665143e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.803479e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.794629e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.362100e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.599113e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.794344e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.654452e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.536508e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.363074e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.365382e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.134725e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.401837e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.275272e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.474572e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.779990e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.094726e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.284833e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.632790e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.482141e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.281125e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.394973e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.019648e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.495351e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.291561e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.362073e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.357011e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.232836e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.185583e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.253809e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.444967e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.296702e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.354305e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.659865e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.359315e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.593952e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.077552e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.844561e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.378994e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.217334e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.281361e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.286374e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.023132e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.249999e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.382536e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.085465e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.780809e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.672843e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.471451e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.771552e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.900430e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.495029e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.434706e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.010064e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.624835e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.996415e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.479165e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.393161e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.527405e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.199898e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.242589e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.461150e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.125578e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.626793e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.626976e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.990752e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.359447e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.444937e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.110690e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.346143e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.891220e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.569922e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.851641e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.227362e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.185561e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.105132e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.557690e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.612331e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.159075e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.264052e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.491127e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.099776e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.785027e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.189693e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.417040e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.674040e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.363158e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.122941e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.381673e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.150089e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.838274e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.072259e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.630048e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.608831e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.989077e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.633343e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.483682e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.110460e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.908166e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.169565e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.701703e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.703207e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.127138e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.871253e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.908775e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.939816e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.446989e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.172148e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.789818e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.381617e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.334404e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.619373e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.174764e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.229519e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.626436e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.155251e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.165495e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.079533e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.099611e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.688042e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.567106e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.922224e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.345679e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.783806e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.412238e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.750548e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.068579e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.473401e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.621433e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.480824e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.273055e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.159640e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.551580e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.042031e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.163469e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.178514e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.160568e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.537879e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.807175e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.181585e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.654929e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.115547e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.207050e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.239851e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.645906e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.006543e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.350408e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.126639e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.636132e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.425705e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.404270e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.329640e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.451349e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.228162e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.104600e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.031657e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.578352e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.611160e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.362684e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.080710e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.016376e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.378522e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.118434e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.626785e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.271224e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.248397e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.148858e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.764507e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.889339e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.138409e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.067038e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.083137e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.797344e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.675095e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.525626e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.085493e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.548949e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.353447e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.772924e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.301334e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.221776e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.864369e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.056410e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.810219e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.087803e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.226191e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.912980e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.455991e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.701904e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.882065e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.730421e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.022458e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.059253e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.410358e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.243391e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.069332e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.334623e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.071789e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.877140e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.013138e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.408987e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.263638e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.104228e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.372752e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.625208e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.507342e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.215981e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.171192e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.533625e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.156073e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.056786e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.147375e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.153468e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.657892e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.297465e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.866760e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.484099e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.036778e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.181864e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.515296e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.859115e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.126911e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.317554e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.597582e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.275588e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.503889e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.050874e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.026437e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.018853e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.862588e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.753724e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.490762e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.078438e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.499421e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.680876e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.301675e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.081532e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.022498e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.850758e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.484858e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.054742e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.273127e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.265791e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.791890e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.633333e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.214672e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.143074e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.019991e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.319533e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.281683e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.202865e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.317704e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.358995e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.028032e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.009540e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.660310e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.222432e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.276696e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.021725e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.419957e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.973813e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.415706e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.941347e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.455072e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.004679e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.484745e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.130986e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.730235e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.160934e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.612182e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.396495e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.375731e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.890662e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.388469e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.038359e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.384584e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.318502e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.768449e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.067747e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.121901e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.485550e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.165409e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.548910e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.937266e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.334690e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.994980e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.040626e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.002627e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.866140e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.053011e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.608210e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.308793e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.008871e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.260142e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.153403e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.065601e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.871426e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.136821e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.058724e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.863517e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.509260e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.745016e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.761851e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.745744e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.000572e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.743854e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.267877e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.484640e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.077105e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.086389e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.002011e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.524273e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.054475e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.147092e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.720973e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.050946e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.877440e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.230614e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.459114e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.811748e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.417620e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.556168e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.859862e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.436529e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.096640e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.476206e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.452195e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.303640e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.271875e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.330266e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.103415e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.565724e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.043447e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.936701e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.124544e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.987130e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.083556e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.507795e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.072549e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.680122e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.850867e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.248497e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.370327e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.012721e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.978485e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.062891e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.481462e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.663723e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.079375e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.409569e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.091027e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.733292e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.004391e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.012239e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.841043e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.702935e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.808146e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.901748e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.689719e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.635266e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.312857e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.030940e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.241061e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.529450e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.475753e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.070599e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.805795e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.063913e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.061393e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.513998e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.544015e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.412394e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.367696e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.010388e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.457530e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.559566e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.734307e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.892541e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.699639e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.956237e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.781084e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.142156e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.993781e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.076449e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.667215e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.461900e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.833488e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.745279e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.591427e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.654678e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.228654e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.647647e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.758849e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.207226e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.709779e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.311061e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.460246e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.977209e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.768418e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.658837e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.119352e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.395761e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.068400e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.051262e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.483763e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.129091e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.518231e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.154414e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.108953e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.404807e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.537786e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.608670e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.229470e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.954924e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.632981e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.521415e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.517331e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.552545e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.788428e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.097270e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.678220e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.220474e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.789070e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.987120e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.536121e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.795765e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.375252e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.163129e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.425719e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.496018e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.114356e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.562911e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.521628e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.796104e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.100085e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.996691e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.379245e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.876994e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.626568e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.594403e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.223916e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.657271e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.952798e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.611792e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.628787e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.558054e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.455078e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.404332e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.148132e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.190752e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.451193e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.110092e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.390130e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.584089e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.865896e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.050030e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.665462e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.099130e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.875271e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.003697e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.801049e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.079793e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.440639e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.641059e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.812732e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.509131e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.680294e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.762929e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.011064e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.002744e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.245333e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.422417e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.726988e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.367754e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.156827e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.410457e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.054135e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.184474e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.671916e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.714152e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.808206e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.172060e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.172364e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.970143e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.315041e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.734317e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.162959e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.798343e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.806836e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.813432e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.278079e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.086215e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.193112e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.183577e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.198341e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.049984e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.678441e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.621237e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.051418e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.079464e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.561385e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.221856e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.215104e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.694062e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.336729e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.329576e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.544506e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.033761e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.078502e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.226429e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.540432e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.057198e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.289894e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.434363e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.046261e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.773249e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.709298e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.295061e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.792247e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.580382e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.114009e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.420974e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.478562e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.009876e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.190539e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.838936e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.150339e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.839508e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.077488e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.829856e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.034455e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.238034e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.932934e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.067445e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.065697e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.413835e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.480443e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.041834e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.199478e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.081376e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.898054e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.030599e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.204030e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.972750e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.017176e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.180232e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.216862e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.131529e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.843369e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.688008e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.055551e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.497220e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.537386e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.046804e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.898730e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.261928e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.079230e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.829150e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.059487e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.272972e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.056701e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.600183e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.086208e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.342701e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.530276e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.063951e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.607595e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.462569e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.642838e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.353633e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.040291e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.226968e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.422637e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.217891e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.262810e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.884466e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.653821e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.622136e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.142080e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.066052e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.255523e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.560377e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.365640e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.817097e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.792178e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.038239e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.546121e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.051427e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.690705e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.018934e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.033073e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.158167e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.854545e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.364731e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.146781e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.101846e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.131936e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.902847e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.347356e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.349772e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.725198e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.296884e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.042283e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.277413e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.748440e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.493379e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.143032e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.204186e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.166700e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.106834e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.249682e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.615999e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.128928e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.331936e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.791676e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.219784e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.826566e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.449060e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.442088e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.700919e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.130807e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.813859e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.221577e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.934841e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.132583e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.293897e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.165829e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.089855e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.055427e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.129045e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.433017e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.033318e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.724428e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.547102e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.396488e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.170553e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.691487e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.928909e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.790468e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.326179e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.770973e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.050703e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.376628e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.920157e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.260818e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.912869e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.300702e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.019330e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.256502e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.631299e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.084306e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.747719e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.262451e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.237765e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.273702e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.915619e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.939784e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.157882e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.135979e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.518728e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.993671e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.478994e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.254792e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.055071e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.302208e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.187160e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.236082e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.528453e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.199576e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.895379e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.082490e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.738341e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.103679e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.313416e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.054348e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.103635e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.034089e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.360497e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.336171e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.252293e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.929909e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.766993e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.556839e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.267294e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.148864e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.271508e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.433872e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.154713e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.904969e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.579445e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.814196e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.610265e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.004453e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.346866e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.454985e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.977947e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.686053e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.649057e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.499697e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.542099e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.875394e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.328494e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.127497e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.194425e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.509134e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.509536e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.218171e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.085924e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.225039e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.843447e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.676277e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.021213e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.089143e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.728378e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.345162e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.397491e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.316499e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.277266e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.926333e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.192237e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.178061e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.884912e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.410173e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.314666e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.614377e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.363785e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.272060e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.049824e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.326981e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.083306e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.115032e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.966286e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.335720e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.921086e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.059285e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.413071e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.294055e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.882305e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.074046e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.258788e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.184689e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.393537e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.976651e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.650437e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.763314e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.316380e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.079499e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.285106e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.376405e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.037224e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.111230e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.437675e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.468123e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.524084e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.232384e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.587789e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.098422e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.071610e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.218443e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.125008e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.656080e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.231883e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.423628e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.244650e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.239105e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.074908e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.533887e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.246265e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.315071e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.178118e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.814640e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.233570e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.802051e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.155330e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.422009e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.653035e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.606259e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.065972e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.232124e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.200784e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.411655e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.179355e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.327836e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.749537e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.213807e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.358715e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.038842e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.642004e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.398314e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.057480e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.350934e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.708890e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.195414e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.618881e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.034606e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.178823e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.058981e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.988411e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.158255e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.213681e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.837652e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.150867e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.003065e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.260089e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.440771e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.301782e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.243028e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.089390e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.253177e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.192392e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.639772e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.492203e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.232150e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.256203e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.073682e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.530000e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.052703e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.132564e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.889543e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.246320e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.414909e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.286335e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.493390e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.192896e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.394181e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.316405e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.112509e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.079018e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.400561e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.997522e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.220471e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.526842e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.204766e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.511709e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.438315e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.851779e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.510960e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.103206e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.711593e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.159386e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.153893e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.243675e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.707682e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.146359e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.333138e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.721337e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.163267e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.272462e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.414212e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.123122e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.296008e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.358666e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.464313e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.264832e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.811221e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.277892e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.497008e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.586076e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.320536e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.281973e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.184931e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.392534e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.105190e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.099772e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.512715e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.495178e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.084682e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.256618e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.721897e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.231699e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.537254e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.048546e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.127637e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.698418e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.233304e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.561886e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.016771e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.049880e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.108444e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.825596e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.340877e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.205161e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.664025e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.731353e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.337541e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.157317e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.188868e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.869753e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.223072e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.374257e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.300589e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.468852e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.362744e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.008153e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.428575e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.279851e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.312643e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.389264e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.502722e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.797474e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.972312e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.008887e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.170619e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.689098e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.674484e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.827100e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.320864e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.509995e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.859440e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.409119e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.795096e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.431532e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.007062e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.902369e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.799796e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.144440e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.717121e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.172554e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.687374e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.148086e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.005432e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.144997e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.273021e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.176259e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.219123e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.639880e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.495938e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.717984e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.266081e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.867935e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.359061e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.224709e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.315352e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.181664e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.101462e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.912301e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.179033e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.707420e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.178837e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.516235e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.248233e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.314561e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.558158e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.063490e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.132583e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.491823e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.258766e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.249285e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.020570e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.353247e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.250135e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.819767e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.403638e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.446136e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.039916e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.115432e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.751393e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.398196e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.748685e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.854861e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.789115e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.721651e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.797796e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.838653e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.483186e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.682134e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.776962e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.123820e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.051183e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.552907e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.226303e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.011210e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.467129e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.710279e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.397915e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.161398e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.583767e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.696429e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.108257e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.152634e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.576153e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.645537e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.872084e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.729740e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.317855e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.234918e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.358470e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.129335e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.058604e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.642177e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.734500e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.601349e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.509043e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.525910e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.866941e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.229012e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.644142e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.462352e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.098397e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.474788e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.413965e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.209404e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.408445e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.871122e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.174543e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.832340e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.296978e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.388459e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.284693e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.239518e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.308323e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.433571e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.749626e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.663748e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.173777e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.158329e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.496033e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.911834e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.568707e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.659770e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.013782e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.171354e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.360953e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.322982e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.294012e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.803572e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.617010e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.974406e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.471724e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.399411e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.014472e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.319689e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.128541e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.759586e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.395569e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.102224e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.415044e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.556929e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.370419e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.928970e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.104039e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.803177e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.135677e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.735183e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.573650e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.435152e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.450635e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.578393e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.222075e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.770637e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.058014e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.477193e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.476801e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.116946e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.793299e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.938660e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.986598e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.013477e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.279789e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.826400e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.897261e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.419967e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.859352e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.202235e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.241235e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.052330e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.587403e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.413403e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.843409e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.486357e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.952033e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.056666e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.178562e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.334603e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.097318e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.739618e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.160486e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.817371e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.706645e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.374522e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.475100e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.605062e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.445999e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.171458e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.133344e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.209547e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.241034e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.437849e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.244837e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.174706e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.417431e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.090142e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.567810e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.657695e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.116745e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.435473e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.397640e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.523086e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.886437e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.765260e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.091427e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.562613e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.158499e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.138630e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.265520e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.634409e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.340949e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.266999e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.616832e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.860946e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.120551e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.342937e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.994201e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.076475e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.138632e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.508041e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.899763e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.211104e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.189937e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.945181e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.085987e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.120559e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.825971e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.284519e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.650497e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.786514e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.722522e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.050768e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.702715e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.547203e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.097588e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.292424e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.006795e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.539517e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.373030e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.492856e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.441355e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.198041e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.172640e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.858633e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.050275e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.288683e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.712557e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.430078e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.074243e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.026525e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.233757e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.844373e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.599524e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.164140e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.211376e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.505787e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.903833e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.077919e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.383507e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.024812e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.874070e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.426000e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.131185e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.669832e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.412607e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.747853e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.333267e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.706736e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.391483e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.547114e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.273115e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.016817e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.118300e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.847405e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.363623e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.250509e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.153454e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.497854e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.025125e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.490729e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.134131e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.077451e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.181816e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.046729e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.130179e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.253909e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.454063e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.257809e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.021293e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.629104e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.203915e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.216012e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.330756e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.265186e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.121354e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.184427e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.818084e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.618277e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.158323e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.751768e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.141923e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.681304e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.454180e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.304664e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.073957e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.224033e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.048828e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.274241e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.438034e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.830337e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.243036e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.004295e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.027957e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.503652e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.278741e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.400014e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.053691e+01 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.510261e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.067140e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.287939e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.279650e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.774663e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.529484e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.930635e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.869297e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.508908e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.919056e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.278664e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.540216e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.632771e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.707839e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.028810e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.306873e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.242251e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.038812e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.893745e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.342120e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.393344e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.567516e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.754093e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.434464e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.920388e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.997570e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.553422e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.293412e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.264995e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.294479e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.793772e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.411027e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.505929e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.520048e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.021645e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.225349e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.444085e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.214618e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.817860e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.402338e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.138261e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.623821e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.777905e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.411673e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.528350e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.418819e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.188428e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.287409e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.752279e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.174215e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.115356e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.132805e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.319876e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.657361e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.948498e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.019559e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.754008e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.637597e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.780753e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.139362e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.988668e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.265315e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.458557e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.621054e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.008542e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.413550e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.361086e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.206080e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.624178e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.316268e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.053467e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.561433e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.340782e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.915368e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.353458e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.227277e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.673057e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.674349e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.065649e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.251967e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.157899e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.156515e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.340000e-05 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.695308e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.640937e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.486165e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.374667e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.401366e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.848568e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.859961e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.680492e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.692806e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.081685e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.626821e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.886070e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.459292e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.087942e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.255027e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.159482e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.154571e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.211841e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.498968e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.113086e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.172075e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.797850e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.028056e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.004806e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.063632e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.164407e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.751832e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.488100e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.366544e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.285367e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.900067e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.457977e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.362294e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.530373e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.324546e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.621781e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.938146e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.794072e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.397546e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.419175e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.202187e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.132559e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.303778e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.999928e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.947550e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.675309e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.884190e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.891092e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.334785e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.820605e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.116341e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.250989e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.795081e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.962969e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.387787e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.794007e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.832560e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.541765e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.647523e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.024168e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.377526e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.040571e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.288688e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.427383e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.235707e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.327526e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.105621e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.614336e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.749726e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.437114e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.308313e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.659343e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.295355e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.037184e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.856393e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.941282e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.440205e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.215711e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.486970e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.648116e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.455658e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.383819e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.315173e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.535587e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.300589e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.456419e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.145906e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.904611e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.184725e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.258196e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.529158e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.044076e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.326568e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.146047e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.297134e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.067634e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.609465e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.905023e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.391596e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.780885e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.529292e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.432603e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.871316e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.487473e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.107850e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.570803e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.849513e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.248463e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.807375e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.940200e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.384355e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.688901e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.952507e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.319932e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.180515e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 8.414889e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.376850e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.421452e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.791351e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 6.861684e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 3.565078e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.074941e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.175317e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.997017e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.382405e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.385862e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.170765e+02 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.380577e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 1.412003e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 4.417478e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 7.580958e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 9.570826e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 2.155381e+03 | Voroni | 7,832,763 |
| 2,521.817 | 2,886.871 | 5.351778e+03 | Voroni | 7,832,763 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,819.376 | 0.000 | 3.819376e+03 | Square | 8,563,041 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 3,763.052 | 0.000 | 3.763052e+03 | Hexagonal | 8,545,891 |
| 2,521.745 | 3,404.325 | 1.157884e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.851399e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.668638e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.705143e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.327713e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.117859e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.762068e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.653889e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.398851e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.488689e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.076999e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.134812e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.416017e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.107949e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.474175e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.312986e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.863852e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.335953e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.605260e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.394992e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.401426e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.735724e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.889195e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.869401e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.201002e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.932385e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.489901e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.211160e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.668666e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.056661e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.940671e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.308660e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.465591e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.902680e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.938713e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.846541e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.353787e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.260264e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.002601e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.928975e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.039416e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.301044e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.786120e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.128888e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.585364e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.183828e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.407689e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.492179e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.508700e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.300233e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.502900e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.141205e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.783063e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.434758e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.952556e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.815633e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.391222e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.235005e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.972751e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.386718e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.485694e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.848799e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.715609e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.331338e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.085965e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.487623e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.332476e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.484425e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.034842e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.966392e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.139798e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.244810e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.027356e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.111673e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.236562e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.801610e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.912272e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.000804e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.232942e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.942872e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.029541e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.348019e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.093137e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.095832e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.748247e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.257231e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.861890e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.861918e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.016842e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.035752e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.752575e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.417212e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.099502e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.633033e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.485390e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.442262e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.483136e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.503740e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.405335e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.193021e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.067758e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.404692e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.166370e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.441980e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.526930e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.878480e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.111913e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.219870e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.548073e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.358471e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.129985e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.475808e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.490952e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.015531e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.068781e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.733502e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.062284e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.310203e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.426613e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.483146e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.119331e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.391338e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.274422e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.190208e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.430877e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.201598e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.787811e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.485110e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.162367e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.760825e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.125901e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.536942e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.485423e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.863349e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.028980e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.006111e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.652632e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.126911e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.383239e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.367981e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.526345e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.089280e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.443687e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.485075e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.573242e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.867193e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.498778e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.861597e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.966327e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.262329e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.317586e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.396673e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.031506e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.790533e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.260944e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.128771e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.643923e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.849577e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.076484e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.508809e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.389930e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.061582e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.208975e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.131824e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.448390e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.490737e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.982132e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.442278e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.087647e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.678853e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.116955e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.310030e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.493354e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.149100e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.111715e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.505853e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.050237e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.360374e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.651528e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.090558e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.462475e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.827390e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.488578e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.478329e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.789353e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.482371e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.102595e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.840104e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.667837e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.711408e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.471784e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.569708e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.309256e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.338576e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.367488e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.028638e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.692454e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.524707e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.801865e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.417608e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.904001e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.295808e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.101077e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.532360e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.505731e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.490273e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.065099e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.553980e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.348471e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.937028e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.983428e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.296144e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.395216e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.387930e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.048254e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.371537e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.151762e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.038541e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.079478e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.354712e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.283739e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.371167e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.056408e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.912653e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.639096e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.115551e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.275989e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.236751e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.427785e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.733491e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.119921e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.428739e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.866541e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.477902e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.575231e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.690436e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.407860e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.376557e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.158374e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.856661e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.370200e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.493665e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.310641e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.367221e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.241179e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.333236e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.871476e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.588611e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.259443e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.467372e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.933354e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.370646e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.489865e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.935459e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.173629e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.382639e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.935798e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.291651e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.601622e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.338929e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.540641e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.704171e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.518326e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.749094e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.766333e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.481757e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.029733e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.855493e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.822386e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.620425e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.406400e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.770765e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.492730e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.402491e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.885115e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.317458e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.529521e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.991364e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.664573e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.505993e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.600112e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.825062e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.391421e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.512395e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.364670e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.177896e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.868089e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.306458e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.432827e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.869239e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.509341e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.502506e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.318878e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.782188e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.559591e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.100473e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.280122e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.427496e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.713937e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.315268e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.337348e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.047152e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.815031e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.520494e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.387046e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.341762e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.358885e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.671016e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.739153e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.528444e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.227256e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.391836e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.448003e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.034149e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.348531e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.549813e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.913867e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.849131e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.175710e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.654241e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.799324e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.078627e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.799898e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.352444e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.170505e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.383369e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.958576e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.973252e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.164825e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.564254e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.173530e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.794096e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.033636e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.504412e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.095627e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.953475e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.085306e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.428962e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.139182e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.327022e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.084104e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.487254e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.827249e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.355865e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.861097e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.860577e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.349414e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.097085e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.146809e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.318196e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.488791e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.707257e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.595349e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.130194e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.667023e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.765983e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.664168e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.482642e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.859900e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.344146e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.866328e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.301799e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.185593e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.711288e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.496721e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.428832e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.124300e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.129699e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.749412e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.644036e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.436572e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.890631e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.372736e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.487137e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.147337e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.029021e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.570415e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.572183e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.299061e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.400771e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.158509e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.687139e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.344959e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.080509e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.304333e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.529323e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.369645e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.863079e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.595167e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.064133e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.794517e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.252559e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.110475e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.243047e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.648761e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.619107e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.164231e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.869806e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.273408e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.054484e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.526000e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.067975e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.310326e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.663852e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.332743e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.406458e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.867231e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.783897e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.354891e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.848723e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.017401e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.560972e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.081602e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.218757e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.007138e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.203944e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.660330e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.039526e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.503141e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.192294e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.119474e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.415199e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.319048e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.161674e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.030280e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.126243e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.576919e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.479160e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.866269e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.291249e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.982408e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.387849e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.378364e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.386426e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.434707e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.333548e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.324074e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.860920e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.258921e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.203943e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.324339e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.331004e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.456121e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.297016e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.208226e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.318189e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.263352e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.427582e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.787115e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.429251e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.627170e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.797528e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.457112e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.370807e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.812435e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.696384e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.624173e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.853184e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.349762e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.862312e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.832727e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.484982e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.963299e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.179458e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.558719e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.012629e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.349225e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.303957e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.225138e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.875187e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.436154e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.762298e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.406044e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.280523e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.326566e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.169319e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.424993e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.426744e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.480761e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.495707e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.795675e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.143646e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.049936e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.457435e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.216652e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.441459e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.143607e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.123586e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.541985e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.898523e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.341477e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.747291e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.611450e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.898229e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.491642e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.557986e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.333610e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.625137e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.709006e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.571852e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.861828e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.274589e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.570874e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.782335e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.166882e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.478452e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.505804e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.488498e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.459071e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.140840e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.395842e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.124618e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.117061e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.342190e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.289003e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.044209e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.357421e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.245170e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.427071e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.116347e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.495165e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.643178e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.559266e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.248000e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.339577e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.520388e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.602209e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.204281e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.344661e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.859732e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.332944e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.096976e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.171299e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.807084e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.649318e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.593576e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.885961e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.169839e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.511355e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.562091e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.392750e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.590045e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.072428e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.172542e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.358907e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.216471e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.719693e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.481327e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.380088e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.862170e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.413855e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.914991e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.861770e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.415919e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.287684e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.087888e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.022625e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.563577e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.330079e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.049652e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.444940e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.123650e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.947251e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.222362e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.599826e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.326465e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.576047e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.065882e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.500940e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.862585e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.378594e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.057773e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.985359e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.235850e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.177151e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.762129e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.483597e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.072444e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.733573e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.369253e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.650939e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.865725e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.050436e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.788783e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.466018e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.025608e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.246752e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.568235e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.394139e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.787150e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.692622e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.102651e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.348665e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.148608e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.989335e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.499976e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.759491e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.447828e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.865901e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.307134e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.767768e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.472215e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.312852e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.506260e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.953531e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.095306e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.605457e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.421392e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.140396e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.173637e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.150327e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.633953e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.710593e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.128455e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.869615e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.824535e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.807123e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.145476e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.126382e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.007704e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.129434e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.485146e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.492043e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.577614e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.339393e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.035589e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.280277e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.315542e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.794522e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.970053e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.214084e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.144756e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.627329e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.445682e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.275767e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.834056e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.259935e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.618775e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.059922e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.696752e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.905839e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.493545e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.451020e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.754773e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.254671e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.809971e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.980012e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.409358e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.008456e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.553931e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.500333e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.106511e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.971255e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.974565e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.387030e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.520931e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.710706e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.577449e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.974862e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.286379e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.090953e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.123920e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.081683e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.312784e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.860154e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.378180e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.947014e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.969687e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.988262e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.265020e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.458262e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.872413e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.741356e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.201028e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.168843e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.043308e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.356633e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.360185e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.381586e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.531012e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.830722e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.136565e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.000544e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.479317e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.932299e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.282540e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.610894e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.957172e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.160663e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.580998e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.999796e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.812565e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.694531e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.492013e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.948031e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.767794e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.275623e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.992833e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.541518e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.626527e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.089316e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.335175e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.517521e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.875924e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.482838e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.101468e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.303805e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.314983e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.795264e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.992584e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.259978e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.184045e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.464886e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.463745e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.216662e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.236196e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.677372e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.601017e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.678251e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.896506e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.446099e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.283443e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.905409e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.659074e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.269249e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.225357e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.963700e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.795243e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.078507e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.294592e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.370178e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.217755e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.933486e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.053329e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.846121e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.747293e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.419355e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.526996e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.757939e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.890511e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.258986e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.667655e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.624680e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.916023e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.251335e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.632749e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.743590e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.984345e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.308450e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.522644e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.086211e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.609186e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.688956e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.045339e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.367736e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.385025e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.750899e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.684780e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.264167e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.068919e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.513941e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.132050e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.272396e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.265704e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.980196e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.466126e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.311710e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.481501e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.752643e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.259411e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.428952e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.953671e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.431783e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.699607e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.265924e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.215146e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.321383e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.588247e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.144664e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.462578e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.574982e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.571040e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.053914e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.745306e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.528043e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.105220e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.301083e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.429723e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.303062e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.268223e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.229741e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.405064e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.207983e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.713331e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.272318e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.319430e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.918383e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.562362e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.750560e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.005552e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.303662e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.090965e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.040688e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.742314e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.817357e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.840375e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.401324e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.203166e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.349870e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.277981e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.323752e+00 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.709705e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.312025e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.681219e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.402444e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.785251e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.026501e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.169523e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.527548e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.623600e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.058284e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.523915e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.860237e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.338108e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.943682e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.053526e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.069913e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.557278e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.882276e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.471170e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.267047e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.629972e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.795787e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.241458e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.102368e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.299638e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.726098e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.443526e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.521414e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.858496e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.143271e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.073994e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.518277e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.167779e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.039373e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.637501e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.473964e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.608001e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.685901e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.241796e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.372024e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.653302e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.223396e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.333545e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.152271e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.101203e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.499292e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.883565e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.452545e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.000881e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.199180e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.669215e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.194040e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.171564e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.110324e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.215300e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.303938e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.113300e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.468509e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.300960e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.308557e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.377865e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.394205e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.861147e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.187212e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.047836e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.811315e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.101220e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.522907e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.959277e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.358148e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.876693e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.003525e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.643424e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.321548e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.720987e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.094657e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.499045e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.337349e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.487301e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.643216e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.098037e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.089295e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.236863e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.990187e+00 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.124786e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.280127e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.022988e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.434959e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.642539e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.404061e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.053103e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.277069e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.480998e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.022472e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.297240e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.515905e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.487489e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.042690e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.247659e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.363820e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.856294e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.500263e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.301205e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.180388e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.240389e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.029899e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.722529e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.185069e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.154863e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.700222e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.039637e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.399416e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.572243e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.040411e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.770714e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.002535e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.865847e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.701495e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.387148e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.784205e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.304824e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.426926e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.582686e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.496837e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.057912e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.901843e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.598381e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.127349e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.049322e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.291518e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.923675e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.445314e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.109119e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.878378e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.251954e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.543037e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.966805e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.736103e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.519654e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.686605e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.447206e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.851574e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.333609e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.888976e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.851277e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.919134e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.644922e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.336171e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.968615e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.960068e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.536431e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.761189e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.779921e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.365304e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.495644e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.738084e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.065845e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.047109e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.301843e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.267937e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.969537e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.477803e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.183196e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.344045e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.372452e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.498957e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.072066e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.928907e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.483241e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.877809e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.405240e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.393009e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.933316e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.328996e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.306334e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.986377e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.146444e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.809070e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.481849e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.850981e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.814122e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.313596e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.895225e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.608592e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.395072e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.563970e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.628722e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.239281e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.740285e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.510126e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.685302e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.320518e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.926478e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.505018e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.162544e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.255879e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.020426e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.397290e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.643342e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.296971e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.414713e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.904733e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.155903e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.852594e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.474746e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.162502e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.933106e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.318799e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.454820e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.403336e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.523652e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.148965e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.034530e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.392515e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.546821e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.370078e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.279435e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.542980e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.649497e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.075912e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.982905e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.525197e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.863251e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.608008e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.587212e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.090698e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.499732e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.008945e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.522750e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.309872e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.818151e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.089344e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.000269e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.906315e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.310203e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.925945e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.511833e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.895296e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.760192e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.221387e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.160268e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.423932e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.421325e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.188703e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.215685e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.685460e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.859712e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.599853e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.133102e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.108875e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.546574e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.545644e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.448017e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.991862e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.443369e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.427754e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.292599e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.824000e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.037339e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.823060e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.222257e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.383741e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.038808e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.344978e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.960652e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.334519e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.215133e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.417080e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.606544e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.688294e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.671794e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.461254e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.029070e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.518764e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.266597e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.243506e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.093573e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.167439e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.687965e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.361867e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.100546e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.718325e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.663084e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.829925e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.110039e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.404591e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.527694e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.063212e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.020593e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.763608e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.183192e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.872306e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.025514e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.843398e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.922335e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.479168e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.128750e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.854226e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.053365e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.409096e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.927708e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.669550e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.710055e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.505288e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.988294e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.546268e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.970690e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.355462e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.138167e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.669116e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.508636e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.053262e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.592993e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.870387e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.014106e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.149582e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.245540e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.431606e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.501023e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.312836e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.858226e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.467900e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.662994e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.055312e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.022024e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.955752e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.628572e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.996156e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.347669e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.934832e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.479661e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.526746e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.509495e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.321532e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.382848e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.286458e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.228402e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.165136e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.569626e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.994739e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.217974e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.108201e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.191579e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.494439e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.637496e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.425895e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.646645e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.535713e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.071944e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.576791e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.644343e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.370909e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.161076e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.242259e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.846016e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.776764e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.079263e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.932558e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.108052e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.572974e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.015659e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.090342e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.337851e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.718239e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.970778e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.819132e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.064735e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.836643e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.420253e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.694776e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.973368e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.437510e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.182664e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.858615e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.244306e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.795883e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.615261e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.233477e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.330246e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.052825e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.193425e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.829038e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.424465e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.748975e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.151276e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.108502e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.045973e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.128621e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.932770e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.126409e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.321577e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.094311e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.666978e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.061426e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.073570e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.680949e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.087704e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.815068e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.845107e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.163185e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.471548e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.279505e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.776120e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.493727e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.442993e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.185144e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.832391e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.020676e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.016523e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.220587e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.391391e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.198354e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.675876e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.810168e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.633092e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.148958e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.302132e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.347666e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.547184e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.279978e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.872770e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.032259e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.437658e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.286060e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.584202e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.546032e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.578153e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.351537e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.497434e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.824494e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.859334e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.278255e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.673647e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.351961e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.911342e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.639897e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.876263e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.173071e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.283350e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.460822e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.212103e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.657292e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.474847e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.095527e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.431986e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.388093e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.859777e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.229033e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.883645e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.047263e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.478368e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.218664e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.193872e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.785841e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.667869e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.488250e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.659268e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.804218e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.067116e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.919358e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.792284e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.863875e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.055123e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.013348e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.434182e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.515813e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.838781e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.098068e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.148056e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.653339e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.564905e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.881737e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.251928e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.171989e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.523655e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.678822e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.239255e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.989758e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.129885e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.056133e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.595259e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.324514e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.133059e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.253444e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.435944e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.092154e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.709072e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.456381e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.148677e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.165146e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.976998e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.962835e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.072835e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.536341e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.360038e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.024501e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.635885e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.280872e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.123201e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.151817e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.051678e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.453139e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.873781e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.835638e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.560031e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.395255e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.396759e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.993487e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.353280e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.118751e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.420787e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.058977e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.074002e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.363024e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.347651e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.098124e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.905334e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.276105e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.419243e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.751988e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.139996e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.552013e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.113301e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.787059e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.607907e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.731175e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.319764e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.179199e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.722351e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.458318e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.483718e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.077727e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.466430e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.338633e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.950300e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.890582e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.743818e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.149908e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.060323e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.324886e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.048496e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.780533e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.897720e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.313258e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.421535e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.781894e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.919603e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.543552e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.058454e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.029794e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.676451e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.570574e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.933701e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.863222e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.662180e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.416684e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.315828e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.245596e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.046999e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.987581e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.990910e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.546286e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.926785e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.748768e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.091253e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.538971e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.948870e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.538119e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.831784e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.289601e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.123223e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.362467e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.222042e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.129409e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.118745e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.651202e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.521638e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.052354e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.592017e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.771391e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.601952e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.603471e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.599040e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.849876e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.849247e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.208497e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.044999e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.187218e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.595922e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.447294e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.323454e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.801283e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.392592e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.132004e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.219214e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.217361e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.430054e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.503207e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.363405e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.658163e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.724812e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.248332e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.099006e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.512732e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.817048e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.435516e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.571637e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.744185e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.110854e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.581764e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.770007e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.148138e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.264787e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.458278e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.489784e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.312264e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.308972e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.298335e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.915599e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.073132e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.539020e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.343653e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.386227e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.859484e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.850674e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.550534e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.614512e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.865300e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.618464e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.366619e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.580638e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.921419e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.035545e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.561260e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.871705e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.483941e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.380219e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.473397e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.122419e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.397212e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.045819e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.981289e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.333625e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.534298e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.202986e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.602440e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.523350e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.087416e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.108884e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.315843e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.488356e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.038954e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.192383e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.157192e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.659406e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.456859e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.794455e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.119105e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.956429e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.312438e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.566229e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.123334e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.732749e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.851541e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.643463e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.565639e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.270472e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.566581e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.029344e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.841567e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.857510e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.398244e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.675083e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.255874e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.470396e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.358963e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.298978e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.864039e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.096505e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.723786e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.037331e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.600292e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.858651e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.982935e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.932351e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.123641e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.246616e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.425634e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.631505e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.381937e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.503597e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.297383e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.723755e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.441285e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.232267e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.245456e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.973770e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.762338e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.541250e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.935915e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.893070e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.955221e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.878548e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.494150e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.029651e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.654563e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.463030e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.695127e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.683840e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.081124e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.456627e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.940128e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.568699e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.304848e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.655015e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.142050e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.468354e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.800750e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.351945e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.345022e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.441877e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.249712e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.384838e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.042170e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.267981e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.686030e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.570991e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.025636e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.753290e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.499710e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.285687e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.517223e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.250941e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.685723e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.476827e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.284176e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.895496e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.385700e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.591047e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.090658e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.041216e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.184582e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.567769e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.115327e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.332323e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.134667e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.086920e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.667529e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.230095e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.558942e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.161776e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.594574e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.613849e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.095185e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.435125e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.630493e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.477726e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.477840e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.527003e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.040543e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.746234e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.676717e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.266793e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.464993e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.364042e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.058549e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.565937e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.389254e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.285547e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.752966e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.480785e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.535054e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.369014e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.358060e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.411265e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.497711e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.972442e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.484099e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.424359e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.596782e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.972548e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.461092e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.173441e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.671328e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.615071e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.486063e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.682175e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.232342e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.135294e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.411197e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.204355e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.486360e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.926605e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.913252e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.913041e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.752615e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.028242e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.859262e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.096113e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.283512e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.587489e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.282257e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.036159e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.324279e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.608677e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.482991e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.507798e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.457669e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.233939e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.491991e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.294270e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.615622e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.729888e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.247694e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.105919e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.132118e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.732948e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.508803e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.429840e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.535826e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.317313e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.733701e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.652660e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.075103e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.059905e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.447861e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.844038e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.009909e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.057256e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.718944e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.350655e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.321680e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.340046e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.016305e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.484393e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.034605e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.693757e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.761902e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.488896e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.541089e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.245114e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.661713e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.281573e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.475597e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.766519e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.480257e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.162440e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.639717e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.709156e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.551802e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.467897e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.526361e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.529270e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.402410e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.046883e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.332999e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.931237e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.819298e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.202315e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.395282e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.252050e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.340452e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.601469e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.162682e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.367568e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.420004e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.209614e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.647774e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.110383e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.334701e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.093377e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.640570e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.036892e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.795769e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.038742e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.359252e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.519687e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.088990e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.481398e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.253151e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.266825e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.164915e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.615621e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.539209e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.315732e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.798183e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.345594e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.184375e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.959533e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.573504e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.688978e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.475217e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.315744e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.656167e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.365055e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.659434e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.005800e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.118329e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.045799e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.994289e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.607200e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.808857e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.457987e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.032817e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.052582e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.280329e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.504773e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.485419e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.386326e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.738517e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.413129e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.335180e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.805130e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.481055e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.227828e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.711190e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.448784e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.394109e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.902133e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.908543e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.508760e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.833679e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.254048e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.193626e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.887762e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.051080e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.426452e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.498629e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.537834e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.093794e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.114034e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.831037e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.606303e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.899025e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.062122e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.495896e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.962421e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.231211e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.416472e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.353611e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.121358e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.634910e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.706427e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.007381e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.734814e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.049089e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.234267e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.007297e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.246983e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.269014e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.807133e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.106338e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.992060e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.328223e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.852745e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.115618e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.491307e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.716107e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.430729e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.495554e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.199453e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.235515e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.395303e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.904898e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.126355e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.074769e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.832169e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.047252e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.156007e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.942515e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.224215e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.244387e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.307960e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.629738e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.447995e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.437852e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.069667e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.716841e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.096959e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.331296e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.137179e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.221661e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.755243e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.038566e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.225963e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.855061e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.477859e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.614533e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.294979e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.929879e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.072883e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.752601e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.897482e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.376136e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.647463e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.728892e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.865262e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.390499e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.439350e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.119636e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.536058e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.078619e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.756947e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.976453e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.070326e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.032417e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.864695e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.736402e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.933001e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.414799e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.688573e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.400148e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.542930e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.073598e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.129542e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.702323e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.161649e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.560590e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.802252e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.763414e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.770860e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.980958e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.756520e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.183614e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.444189e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.727051e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.338277e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.708127e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.744764e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.055189e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.277075e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.234550e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.396380e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.652239e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.454528e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.661602e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.368821e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.777118e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.032198e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.552383e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.163525e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.421118e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.483905e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.154242e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.681927e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.508549e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.738970e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.280603e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.518663e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.861608e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.166565e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.327606e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.714431e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.287872e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.317659e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.692053e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.987014e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.538992e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.791782e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.507489e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.829101e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.089266e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.982879e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.613670e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.600357e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.497213e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.644765e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.896144e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.448554e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.964970e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.032159e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.644150e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.196348e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.849445e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.490517e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.290500e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.411539e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.475364e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.734887e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.315793e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.609870e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.297467e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.476488e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.883840e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.991313e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.407249e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.774708e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.363224e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.984047e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.265385e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.202389e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.930193e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.411410e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.449848e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.089485e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.318781e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.264083e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.709705e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.395713e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.057957e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.846489e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.935026e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.591795e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.466463e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.770978e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.130729e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.656592e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.879788e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.628502e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.397076e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.665221e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.415656e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.448210e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.086645e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.280820e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.252530e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.858689e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.874849e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.095754e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.098437e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.497855e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.843957e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.503515e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.204330e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.268974e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.382663e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.251447e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.114517e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.278812e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.843128e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.527541e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.686597e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.163856e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.104475e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.406418e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.667891e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.348566e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.745019e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.320674e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.361085e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.351369e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.418271e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.980348e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.099515e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.788340e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.015663e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.300767e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.168014e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.963341e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.169077e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.321363e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.367072e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.871583e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.758605e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.194082e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.440724e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.119995e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.269983e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.576634e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.906097e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.460861e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.877940e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.806596e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.138627e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.637513e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.481049e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.313361e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.611719e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.112198e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.996493e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.422188e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.854217e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.689224e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.739221e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.238595e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.329285e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.952613e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.287473e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.404582e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.119610e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.038659e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.653061e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.380488e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.699542e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.229179e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.037863e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.195077e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.992386e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.732017e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.233151e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.619521e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.756323e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.054255e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.959525e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.675357e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.905397e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.244903e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.557437e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.894565e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.107796e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.584676e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.371150e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.057568e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.101804e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.315398e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.579246e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.435301e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.138382e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.788242e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.348113e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.233890e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.728167e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.901784e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.266332e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.331410e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.877684e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.319304e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.394311e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.110607e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.432677e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.038826e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.197119e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.257166e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.307395e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.602154e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.262672e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.035531e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.783855e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.925910e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.057290e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.310833e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.640815e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.146347e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.699573e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.244912e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.204798e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.419080e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.424461e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.218992e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.550088e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.646208e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.685990e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.295530e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.186494e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.571813e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.471980e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.171734e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.055426e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.618632e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.667024e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.682464e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.493810e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.873620e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.852459e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.067591e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.748370e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.339328e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.202166e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.023123e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.168813e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.303601e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.040682e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.538982e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.445856e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.361750e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.087853e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.421474e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.354708e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.066040e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.748412e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.912562e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.431298e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.134466e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.240046e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.637456e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.805131e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.366355e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.389150e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.541650e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.422393e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.316495e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.898775e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.840154e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.093193e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.789783e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.050032e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.806817e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.086232e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.898293e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.073204e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.723778e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.548974e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.967448e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.175759e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.417301e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.177626e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.857593e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.847187e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.184845e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.648101e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.714275e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.281725e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.628994e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.250949e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.853973e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.481933e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.508104e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.597619e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.788811e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.342575e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.001056e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.048309e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.502807e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.459155e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.296282e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.168712e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.975124e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.808504e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.966103e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.599188e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.914809e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.851563e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.578453e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.102992e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.233079e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.134828e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.861333e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.367331e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.333598e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.471588e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.005005e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.358083e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.116636e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.721888e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.147947e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.868432e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.584693e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.261207e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.440804e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.122436e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.182804e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.217621e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.593374e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.724989e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.876420e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.620422e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.904953e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.713592e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.549152e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.972363e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.166675e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.343238e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.504388e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.567967e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.545689e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.701410e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.632888e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.732342e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.981904e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.104355e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.359841e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.571191e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.481482e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.091694e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.514778e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.053586e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.491557e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.031500e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.486571e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.792501e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.275641e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.560750e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.040667e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.010315e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.411370e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.390317e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.308997e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.853653e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.604988e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.019948e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.135305e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.454017e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.433057e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.280496e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.490004e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.622481e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.366581e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.426653e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.063693e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.994077e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.756700e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.343719e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.922833e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.500324e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.472732e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.158175e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.056195e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.079040e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.315288e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.506627e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.091267e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.567997e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.256243e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.689598e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.452547e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.118647e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.271876e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.398763e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.159013e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.337227e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.172391e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.058313e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.292247e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.910082e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.376917e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.509998e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.473903e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.038654e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.252102e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.256857e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.606414e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.290849e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.679966e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.538774e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.156627e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.682914e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.352864e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.226059e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.830744e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.529329e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.300759e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.038097e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.207692e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.408680e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.651635e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.054164e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.524525e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.396648e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.441095e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.164379e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.008341e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.583269e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.829039e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.276100e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.335725e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.891407e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.945610e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.159409e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.089020e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.402306e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.517497e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.376788e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.724082e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.558513e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.673794e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.189894e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.968213e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.351164e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.559861e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.321207e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.495649e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.340098e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.717309e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.991930e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.268609e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.506778e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.007135e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.480344e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.247451e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.462709e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.400311e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.998033e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.811310e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.604666e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.746090e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.352293e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.114779e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.022548e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.241550e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.482427e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.356220e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.661154e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.379191e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.207718e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.401996e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.142545e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.345501e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.252577e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.205550e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.691956e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.071178e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.967456e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.319278e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.248310e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.653236e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.859318e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.208686e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.299242e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.284773e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.761431e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.731108e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.788110e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.373919e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.342604e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.289821e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.309688e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.487667e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.900499e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.224749e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.484697e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.724770e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.416526e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.782841e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.974618e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.563832e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.683673e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.036586e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.603654e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.777128e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.515381e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.808482e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.230514e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.715581e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.086166e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.603917e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.325934e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.592900e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.682150e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.590399e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.665385e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.917422e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.153841e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.757269e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.869228e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.582079e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.707659e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.396961e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.088353e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.862017e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.520942e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.078750e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.426740e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.895977e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.631459e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.297807e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.683365e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.921239e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.343604e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.487464e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.704022e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.251041e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.948604e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.627534e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.058891e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.364740e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.264122e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.883100e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.921438e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.892770e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.158675e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.714329e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.606302e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.151264e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.188153e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.615955e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.308811e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.019875e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.032771e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.115514e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.338223e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.336750e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.972406e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.683539e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.447826e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.580975e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.069542e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.038049e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.043868e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.152661e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.480561e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.297706e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.028657e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.109456e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.073100e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.156888e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.566048e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.545046e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.913766e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.003272e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.371857e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.335217e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.632034e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.114579e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.991198e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.060957e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.023032e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.988519e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.090151e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.115923e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.524636e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.073344e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.927888e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.833473e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.603173e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.428728e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.874367e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.492323e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.159222e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.597579e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.869830e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.546316e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.520709e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.173618e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.086705e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.787044e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.787380e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.130297e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.090499e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.682596e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.964239e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.062044e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.144491e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.894156e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.668025e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.411756e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.080394e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.751640e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.935965e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.260186e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.478986e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.094733e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.451495e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.150419e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.319904e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.591109e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.230705e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.302931e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.344553e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.111082e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.382840e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.923235e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.942106e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.346054e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.433879e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.089406e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.648035e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.232448e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.200911e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.655718e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.472631e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.460495e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.762393e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.721392e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.953264e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.536181e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.050638e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.125226e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.514699e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.304909e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.805325e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.641900e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.881483e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.818214e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.882698e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.426966e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.213125e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.335903e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.322277e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.680739e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.610038e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.140079e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.273359e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.966492e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.315679e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.210332e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.206254e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.607496e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.758488e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.294348e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.632044e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.751789e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.459542e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.601260e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.777571e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.997203e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.285387e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.541458e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.067244e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.004743e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.348169e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.762706e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.698558e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.616893e+00 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.366044e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.819522e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.980066e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.320193e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.280116e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.510847e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.579541e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.273534e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.802604e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.602447e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.539392e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.805709e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.508966e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.232450e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.402465e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.909672e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.710116e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.059699e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.194613e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.488655e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.832889e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.142433e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.947775e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.142112e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.658377e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.092999e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.068178e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.274440e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.986804e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.865684e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.286257e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.014734e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.752189e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.495903e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.502666e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.634562e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.293169e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.216199e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.117234e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.070900e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.663138e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.411010e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.107225e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.878889e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.882512e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.214535e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.346852e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.195429e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.444704e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.033072e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.740171e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.767125e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.593861e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.722777e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.057529e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.090540e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.449471e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.011582e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.760403e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.688891e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.908230e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.109151e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.649752e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.450033e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.775178e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.240818e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.652481e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.983148e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.575836e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.928350e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.281290e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.210421e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.762259e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.611857e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.653272e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.304793e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.657396e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.283271e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.593380e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.048931e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.688396e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.514311e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.294450e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.705443e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.076650e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.699028e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.120979e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.224886e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.538903e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.479564e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.484464e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.306569e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.395913e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.248942e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.071253e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.425550e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.257135e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.902041e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.965777e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.517429e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.072995e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.954771e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.511620e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.054629e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.164987e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.041810e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.171992e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.696601e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.078195e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.243581e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.107149e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.289435e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.586454e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.974764e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.493969e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.755103e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.936709e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.436215e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.559955e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.189044e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.787997e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.229451e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.199021e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.618510e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.315182e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.013686e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.433522e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.713557e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.379473e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.104273e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.873302e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.176881e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.877010e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.585597e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.097380e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.274382e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.333686e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.635404e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.121873e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.941831e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.385027e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.988252e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.848579e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.170306e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.758925e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.155316e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.096178e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.928569e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.598713e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.056635e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.555007e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.691867e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.977378e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.984295e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.266181e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.647775e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.149965e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.158723e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.739077e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.979618e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.250274e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.593860e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.066813e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.932275e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.430983e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.120499e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.688111e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.255200e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.053883e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.966869e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.793515e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.245689e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.168957e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.151698e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.103914e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.420778e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.492382e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.197638e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.801383e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.156621e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.659654e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.714723e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.241248e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.386762e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.461469e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.357248e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.320564e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.059981e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.669693e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.243083e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.499091e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.738473e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.070315e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.702632e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.077954e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.093289e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.461749e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.679151e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.881329e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.404871e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.780859e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.203265e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.019231e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.125183e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.916743e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.359932e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.573246e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.726499e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.497240e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.044365e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.246422e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.148874e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.674073e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.058180e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.039602e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.995884e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.775153e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.804610e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.377277e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.164143e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.578761e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.344472e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.793500e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.235364e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.326341e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.056557e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.638315e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.012350e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.818690e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.192486e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.696025e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.305609e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.544413e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.614933e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.121119e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.113270e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.635353e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.695784e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.465157e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.758327e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.894388e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.913445e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.616282e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.755955e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.531091e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.042818e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.387102e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.532786e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.825973e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.047066e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.958183e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.320093e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.643974e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.464873e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.468810e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.068827e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.694905e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.093164e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.190995e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.883569e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.372386e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.198878e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.200155e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.336898e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.967696e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.238989e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.829728e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.013061e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.684177e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.721588e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.997170e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.252530e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.318143e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.568547e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.509767e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.613850e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.176075e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.769135e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.409215e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.907768e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.088672e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.355437e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.433854e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.108932e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.125992e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.468332e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.849649e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.927952e+01 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.108626e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.801033e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.241917e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.283283e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.777242e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.426153e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.298407e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.707492e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.753682e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.427147e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.632327e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.463179e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.452877e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.697840e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.333544e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.034061e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.621798e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.874027e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.918860e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.609223e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.200475e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.483568e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.804052e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.700853e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.510994e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.768364e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.004543e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.038425e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.016887e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.519023e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.616707e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.166985e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.545096e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.716958e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.487603e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.367543e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.040948e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.044280e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.929292e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.080609e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.658368e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.243615e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.761309e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.678367e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.345501e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.212392e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.028516e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.202144e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.834301e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.040243e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.571401e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.778117e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.624779e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.371841e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.205830e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.281921e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.168644e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.893388e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.576908e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.644082e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.727836e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.770198e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.143172e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.715077e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.224880e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.691600e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.916303e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.244679e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.870260e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.043681e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.109039e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.450064e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.214093e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.388519e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.690825e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.352139e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.336425e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.230445e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.136773e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.576164e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.240420e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.231795e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.958769e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.890541e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.764952e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.188908e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.691955e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.064070e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.900735e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.682781e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.101700e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.936374e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.081594e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.911371e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.562187e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.781990e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.360733e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.432627e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.717435e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.544885e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.568412e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.493186e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.222530e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.495953e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.427773e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.932027e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.344013e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.075945e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.771293e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.604528e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.159584e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.880841e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.408379e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.740499e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.550801e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.415078e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.229470e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.952267e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.391881e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.805826e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.299310e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.053190e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.099375e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.161604e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.490259e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.182153e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.690189e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.655879e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.071059e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.801633e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.014424e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.211356e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.550147e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.167643e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.820201e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.098566e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.529041e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.857273e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.070590e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.225771e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.224639e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.159152e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.204202e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.017203e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.998271e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.392628e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.063106e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.722772e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.989844e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.645176e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.338626e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.943845e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.345461e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.270222e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.055875e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.767500e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.860267e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.957424e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.746132e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.156638e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.424681e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.495058e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.822103e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.434568e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.911304e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.412600e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.028009e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.901483e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.280223e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.674303e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.414959e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.992665e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.726874e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.818607e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.621959e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.383878e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.016643e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.074291e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.860955e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.832238e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.784258e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.039787e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.114929e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.992497e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.591445e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.018595e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.796090e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.329891e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.202456e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.345183e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.145286e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.408845e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.129221e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.117976e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.839118e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.769235e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.100787e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.731364e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.508507e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.382264e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.127221e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.598621e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.095573e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.067857e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.560578e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.230256e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.786439e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.689593e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.345975e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.003054e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.130265e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.226542e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.581527e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.921880e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.619572e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.283082e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.277059e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.045227e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.694758e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.162230e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.184475e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.222543e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.223603e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.442757e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.438548e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.078709e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.086615e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.412859e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.941974e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.849827e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.526310e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.745328e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.778946e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.663745e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.558032e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.225482e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.680301e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.228534e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.372813e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.279523e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.670218e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.893986e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.545053e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.927155e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.135772e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.209379e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.906973e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.073483e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.587197e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.038655e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.002262e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.248779e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.746817e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.082190e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.120172e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.205669e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.325374e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.079639e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.417754e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.909716e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.885066e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.250204e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.721839e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.838551e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 5.625883e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.353427e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.609190e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.090663e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.518441e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.883444e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.290194e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.215692e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.360132e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.045360e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.153239e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.988474e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.738404e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.027760e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.307847e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.317162e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.189039e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.634863e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.612726e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.835760e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.630050e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.809910e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.910110e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.240732e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 9.682234e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.586643e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.198068e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.924127e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.694878e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.915336e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.669021e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 3.794899e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 4.155271e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.313245e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.765867e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.715618e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 7.984270e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.349719e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.469846e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.329845e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.014095e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.526355e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.251407e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.800144e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.757934e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.843948e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.219994e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 6.798263e+02 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 2.039230e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 8.615016e+03 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.310002e+04 | OG Counties | 7,837,583 |
| 2,521.745 | 3,404.325 | 1.841203e+03 | OG Counties | 7,837,583 |
library(readxl)
dams = read_excel("../data/NID2019_U.xlsx") %>%
filter(!is.na(LATITUDE))
damns = dams %>%
filter(!is.na("LATITUDE")) %>%
st_as_sf(coords = c("LONGITUDE", "LATITUDE"), crs = 4326) %>%
st_transform(5070)
point_in_poly = function(points, polygon,ID){
st_join(polygon, points) %>%
count(geoid)
}
#3.2
tryfuntion = function(points, polygon, group){
st_join(polygon, points) %>%
st_drop_geometry() %>%
count(get(group)) %>%
setNames(c(group, "n")) %>%
left_join(polygon, by = group) %>%
st_as_sf()
}
#3.4
plot_pip = function(data){
ggplot() +
geom_sf(data = data, aes(fill = log(n)), alpha = .9, size = .2) +
scale_fill_gradient(low = "white", high = "darkblue") +
theme_void() +
theme(legend.position = 'none',
plot.title = element_text(face = "bold", color = "darkblue", hjust = .5, size = 24)) +
labs(title = "Dams in the US",
caption = paste0(sum(data$n), " locations represented"))
}
#3.5
veroni_pip = tryfuntion(points = damns, polygon = veroni, group = "id")
plot_pip(veroni_pip)
triang_pip = tryfuntion(points = damns, polygon = triang, group = "id")
plot_pip(triang_pip)
square_pip = tryfuntion(points = damns, polygon = sq_grid, group = "id")
plot_pip(square_pip)
hex_pip = tryfuntion(points = damns, polygon = sq_hex, group = "id")
plot_pip(hex_pip)
plot_pip(square_pip)
plot_pip(triang_pip)
plot_pip(veroni_pip)
#Each tessellation is going to display the visualization of dams differently and will attribute to MAUP problem.Even thought the square one is even,
# I believe that the voroni tessellation will better represent the dams data.
damns %>% filter(grepl(“R”, PURPOSES)) %>% tryfuntion(veroni, “id”) %>% plot_pip() + gghighlight::gghighlight(n >= (mean(n) + sd(n)))
damns %>% filter(grepl(“C”,PURPOSES)) %>% tryfuntion(veroni, “id”) %>% plot_pip() + gghighlight::gghighlight(n >= (mean(n) + sd(n)))
damns %>% filter(grepl(“P”, PURPOSES)) %>% tryfuntion(veroni, “id”) %>% plot_pip() + gghighlight::gghighlight(n >= (mean(n) + sd(n)))
damns %>% filter(grepl(“H”, PURPOSES)) %>% tryfuntion(veroni, “id”) %>% plot_pip() + gghighlight::gghighlight(n >= (mean(n) + sd(n)))